From 578882b4c25238ff4c174cfeb2cbff06042c48b7 Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Wed, 18 Jan 2023 19:00:37 +0100 Subject: [PATCH] Small sync with new documentation improvements. --- bfxapi/rest/serializers.py | 2 +- bfxapi/rest/types.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bfxapi/rest/serializers.py b/bfxapi/rest/serializers.py index b6af19f..7cea3db 100644 --- a/bfxapi/rest/serializers.py +++ b/bfxapi/rest/serializers.py @@ -7,7 +7,7 @@ from .. notification import _Notification #region Serializers definition for Rest Public Endpoints PlatformStatus = generate_labeler_serializer("PlatformStatus", klass=types.PlatformStatus, labels=[ - "OPERATIVE" + "STATUS" ]) TradingPairTicker = generate_labeler_serializer("TradingPairTicker", klass=types.TradingPairTicker, labels=[ diff --git a/bfxapi/rest/types.py b/bfxapi/rest/types.py index 1dbc533..9cd14b9 100644 --- a/bfxapi/rest/types.py +++ b/bfxapi/rest/types.py @@ -12,7 +12,7 @@ JSON = Union[Dict[str, "JSON"], List["JSON"], bool, int, float, str, Type[None]] @dataclass class PlatformStatus(_Type): - OPERATIVE: int + STATUS: int @dataclass class TradingPairTicker(_Type):