polyticket-api/poly-ticket-api-client/poly_ticket_api_client/models/blank_enum.py

9 lines
131 B
Python

from enum import Enum
class BlankEnum(str, Enum):
VALUE_0 = ""
def __str__(self) -> str:
return str(self.value)