mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2026-01-02 11:58:14 -05:00
44 lines
1016 B
Python
44 lines
1016 B
Python
from enum import Enum, Flag
|
|
|
|
class Platform(Enum):
|
|
Unknown = "unknown"
|
|
Gog = "gog"
|
|
Steam = "steam"
|
|
Psn = "psn"
|
|
XBoxOne = "xboxone"
|
|
Generic = "generic"
|
|
Origin = "origin"
|
|
Uplay = "uplay"
|
|
Battlenet = "battlenet"
|
|
Epic = "epic"
|
|
|
|
class Feature(Enum):
|
|
Unknown = "Unknown"
|
|
ImportInstalledGames = "ImportInstalledGames"
|
|
ImportOwnedGames = "ImportOwnedGames"
|
|
LaunchGame = "LaunchGame"
|
|
InstallGame = "InstallGame"
|
|
UninstallGame = "UninstallGame"
|
|
ImportAchievements = "ImportAchievements"
|
|
ImportGameTime = "ImportGameTime"
|
|
Chat = "Chat"
|
|
ImportUsers = "ImportUsers"
|
|
VerifyGame = "VerifyGame"
|
|
|
|
class LicenseType(Enum):
|
|
Unknown = "Unknown"
|
|
SinglePurchase = "SinglePurchase"
|
|
FreeToPlay = "FreeToPlay"
|
|
OtherUserLicense = "OtherUserLicense"
|
|
|
|
class LocalGameState(Flag):
|
|
None_ = 0
|
|
Installed = 1
|
|
Running = 2
|
|
|
|
class PresenceState(Enum):
|
|
Unknown = "Unknown"
|
|
Online = "online"
|
|
Offline = "offline"
|
|
Away = "away"
|