Source code for FortniteAPIAsync.enums
from enum import Enum, IntFlag
[docs]
class AccountType(Enum):
EPIC = 'epic'
PLAYSTATION = 'psn'
XBOX = 'xbl'
[docs]
class StatsTimeWindow(Enum):
SEASON = 'season'
LIFETIME = 'lifetime'
[docs]
class StatsImage(Enum):
ALL = 'all'
KEYBOARD_AND_MOUSE = 'keyboardMouse'
CONTROLLER = 'gamepad'
TOUCH = 'touch'
NONE = 'none'
[docs]
class ResponseFlags(IntFlag):
NONE = 0
INCLUDE_PATHS = 1 << 0
INCLUDE_GAMEPLAY_TAGS = 1 << 1
INCLUDE_SHOP_HISTORY = 1 << 2