Module valolyticspy.dtos.riot.enums
Expand source code
from enum import Enum
class AccountRegion(Enum):
"""
Represents the regions for an account.
Attributes:
AMERICAS (str): The Americas region.
ASIA (str): The Asia region.
ESPORTS (str): The Esports region.
EUROPE (str): The Europe region.
"""
AMERICAS = "americas"
ASIA = "asia"
ESPORTS = "esports"
EUROPE = "europe"
class MatchRegion(Enum):
"""
Represents the regions for a match.
Attributes:
AP (str): The Asia Pacific region.
BR (str): The Brazil region.
ESPORTS (str): The eSports region.
EU (str): The Europe region.
KR (str): The Korea region.
LATAM (str): The Latin America region.
"""
AP = "ap"
BR = "br"
ESPORTS = "esports"
EU = "eu"
KR = "kr"
LATAM = "latam"
Classes
class AccountRegion (value, names=None, *, module=None, qualname=None, type=None, start=1)-
Represents the regions for an account.
Attributes
AMERICAS:str- The Americas region.
ASIA:str- The Asia region.
ESPORTS:str- The Esports region.
EUROPE:str- The Europe region.
Expand source code
class AccountRegion(Enum): """ Represents the regions for an account. Attributes: AMERICAS (str): The Americas region. ASIA (str): The Asia region. ESPORTS (str): The Esports region. EUROPE (str): The Europe region. """ AMERICAS = "americas" ASIA = "asia" ESPORTS = "esports" EUROPE = "europe"Ancestors
- enum.Enum
Class variables
var AMERICASvar ASIAvar ESPORTSvar EUROPE
class MatchRegion (value, names=None, *, module=None, qualname=None, type=None, start=1)-
Represents the regions for a match.
Attributes
AP:str- The Asia Pacific region.
BR:str- The Brazil region.
ESPORTS:str- The eSports region.
EU:str- The Europe region.
KR:str- The Korea region.
LATAM:str- The Latin America region.
Expand source code
class MatchRegion(Enum): """ Represents the regions for a match. Attributes: AP (str): The Asia Pacific region. BR (str): The Brazil region. ESPORTS (str): The eSports region. EU (str): The Europe region. KR (str): The Korea region. LATAM (str): The Latin America region. """ AP = "ap" BR = "br" ESPORTS = "esports" EU = "eu" KR = "kr" LATAM = "latam"Ancestors
- enum.Enum
Class variables
var APvar BRvar ESPORTSvar EUvar KRvar LATAM