Small sync with new documentation improvements.

This commit is contained in:
Davide Casale
2023-01-18 19:00:37 +01:00
parent 3d5dfe48ca
commit 578882b4c2
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ from .. notification import _Notification
#region Serializers definition for Rest Public Endpoints #region Serializers definition for Rest Public Endpoints
PlatformStatus = generate_labeler_serializer("PlatformStatus", klass=types.PlatformStatus, labels=[ PlatformStatus = generate_labeler_serializer("PlatformStatus", klass=types.PlatformStatus, labels=[
"OPERATIVE" "STATUS"
]) ])
TradingPairTicker = generate_labeler_serializer("TradingPairTicker", klass=types.TradingPairTicker, labels=[ TradingPairTicker = generate_labeler_serializer("TradingPairTicker", klass=types.TradingPairTicker, labels=[

View File

@@ -12,7 +12,7 @@ JSON = Union[Dict[str, "JSON"], List["JSON"], bool, int, float, str, Type[None]]
@dataclass @dataclass
class PlatformStatus(_Type): class PlatformStatus(_Type):
OPERATIVE: int STATUS: int
@dataclass @dataclass
class TradingPairTicker(_Type): class TradingPairTicker(_Type):