from enum import Enum class GarbageType(Enum): BIO = 0 PLASTIC = 1 PAPER = 2 GENERAL = 3 GLASS = 4 UNSPECIFIED = 5