APIClient/garbage_api_client/models/collection_entry_garbage_type.py
2024-05-27 00:04:25 +02:00

14 lines
228 B
Python

from enum import IntEnum
class CollectionEntryGarbageType(IntEnum):
VALUE_0 = 0
VALUE_1 = 1
VALUE_2 = 2
VALUE_3 = 3
VALUE_4 = 4
VALUE_5 = 5
def __str__(self) -> str:
return str(self.value)