import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class IdResponse:
id: Optional[str] = None
response_status: Optional[ResponseStatus] = None
class PlayerRole(str, Enum):
LEADER = 'Leader'
PLAYER = 'Player'
NON_PLAYER = 'NonPlayer'
class PlayerRegion(IntEnum):
AFRICA = 1
AMERICAS = 2
ASIA = 3
AUSTRALASIA = 4
EUROPE = 5
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class UpdateProfile(IPatchDb[Profile]):
id: int = 0
role: Optional[PlayerRole] = None
region: Optional[PlayerRegion] = None
username: Optional[str] = None
high_score: Optional[int] = None
games_played: Optional[int] = None
# @Validate(Validator="InclusiveBetween(0,100)")
energy: Optional[int] = None
profile_url: Optional[str] = None
cover_url: Optional[str] = None
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsonl/reply/UpdateProfile HTTP/1.1
Host: blazor-gallery.servicestack.net
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"id":0,"role":"Leader","region":"0","username":"String","highScore":0,"gamesPlayed":0,"energy":0,"profileUrl":"String","coverUrl":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"id":"String","responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}