File: models.py

package info (click to toggle)
python-xbox-webapi 2.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,916 kB
  • sloc: python: 4,973; makefile: 79
file content (11 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
from enum import Enum


class ClaimGamertagResult(Enum):
    NotAvailable = 409
    Available = 200


class ChangeGamertagResult(Enum):
    ChangeSuccessful = 200
    NoFreeChangesAvailable = 1020