Files
galaxy-integrations-python-api/galaxy/api/consts.py
Romuald Juchnowicz-Bierbasz d69e1aaa08 SDK-2538: Add LicenseType enum
2019-02-21 15:11:49 +01:00

40 lines
936 B
Python

from enum import Enum
class Platform(Enum):
Unknown = "unknown"
Gog = "gog"
Steam = "steam"
Psn = "psn"
XBoxOne = "xboxone"
Generic = "generic"
Origin = "origin"
Uplay = "uplay"
Battlenet = "battlenet"
class Feature(Enum):
ImportInstalledGames = "ImportInstalledGames"
ImportOwnedGames = "ImportOwnedGames"
LaunchGame = "LaunchGame"
InstallGame = "InstallGame"
UninstallGame = "UninstallGame"
ImportAchievements = "ImportAchievements"
ImportGameTime = "ImportGameTime"
Chat = "Chat"
ImportUsers = "ImportUsers"
VerifyGame = "VerifyGame"
class LicenseType(Enum):
SinglePurchase = "SinglePurchase"
FreeToPlay = "FreeToPlay"
OtherUserLicense = "OtherUserLicense"
Unknown = "Unknown"
class LocalGameState(Enum):
Installed = "Installed"
Running = "Running"
class PresenceState(Enum):
Online = "online"
Offline = "offline"
Away = "away"