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

10 lines
151 B
Python

from enum import Enum
class SchemaRetrieveLang(str, Enum):
EN = "en"
FR = "fr"
def __str__(self) -> str:
return str(self.value)