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):