APIClient/garbage_api_client/models/collection_entry_garbage_type.py

14 lines
228 B
Python
Raw Permalink Normal View History

2024-05-27 01:04:25 +03:00
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)