Files
bitfinex-api-py/bfxapi/rest/typings.py
2022-11-30 18:25:15 +01:00

9 lines
207 B
Python

from typing import Type, Tuple, List, Dict, TypedDict, Union, Optional, Any
#region Type hinting for Rest Public Endpoints
PlatformStatus = TypedDict("PlatformStatus", {
"OPERATIVE": int
})
#endregion