from enum import Enum class Skip(Enum): = "0" V1 = "1" def list(): return list(map(lambda x: x.value, Skip._member_map_.values()))