| All Verbs | /qry/users/notifications |
|---|
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
class Severity(IntEnum):
SUCCESS = 0
INFO = 1
WARNING = 2
ERROR = 3
class NotificationType(IntEnum):
DEFAULT = 0
SLIP_DELIVERY_CONFIRMATION_REQUEST = 1
SLIP_DELIVERY_ISSUE_RESOLVED = 2
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Notification:
severity: Optional[Severity] = None
type: Optional[NotificationType] = None
data: Optional[RecordDictionary[str, str]] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class UserNotification:
id: Optional[str] = None
notification: Optional[Notification] = None
dispatched_at: datetime.datetime = datetime.datetime(1, 1, 1)
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class UserNotifications:
id: Optional[str] = None
n: int = 0
s: int = 0
i: int = 0
w: int = 0
e: int = 0
notifications: Optional[Dict[str, UserNotification]] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GetUserNotifications:
id: Optional[str] = None
TKey = TypeVar('TKey')
TVal = TypeVar('TVal')
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class RecordDictionary(Generic[TKey, TVal], Dict[TKey,TVal]):
pass
Python GetUserNotifications DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /qry/users/notifications HTTP/1.1
Host: api.sbbet.ath.cx
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<GetUserNotifications xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Betting.WebApi.ServiceModel">
<Id>String</Id>
</GetUserNotifications>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<UserNotifications xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Betting.ReadModel">
<Id>String</Id>
<Notifications xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringUserNotifications.UserNotificationICRnA2uO>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>
<DispatchedAt>0001-01-01T00:00:00</DispatchedAt>
<Id>String</Id>
<Notification xmlns:d5p1="http://schemas.datacontract.org/2004/07/Betting.Common">
<d5p1:Data>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</d5p1:Data>
<d5p1:Severity>Success</d5p1:Severity>
<d5p1:Type>Default</d5p1:Type>
</Notification>
</d2p1:Value>
</d2p1:KeyValueOfstringUserNotifications.UserNotificationICRnA2uO>
</Notifications>
</UserNotifications>