Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.7 KB

File metadata and controls

36 lines (27 loc) · 1.7 KB

GetTickerResponse

GetTickerResponse response for /api/ticker

Properties

Name Type Description Notes
ask str The lowest ask price [optional]
bid str The highest bid price [optional]
last_trade str Last trade price [optional]
pair str [optional]
rolling_24_hour_volume str 24h rolling trade volume [optional]
status str Market current status <code>ACTIVE</code> when the market is trading normally <code>POSTONLY</code> when the market has been suspended and only post-only orders will be accepted <code>DISABLED</code> when the market is shutdown and no orders can be accepted <code>UNKNOWN</code> the market status could not be determined. This is a temporary state. [optional]
timestamp int Unix timestamp in milliseconds of the tick [optional]

Example

from luno_openapi.models.get_ticker_response import GetTickerResponse

# TODO update the JSON string below
json = "{}"
# create an instance of GetTickerResponse from a JSON string
get_ticker_response_instance = GetTickerResponse.from_json(json)
# print the JSON string representation of the object
print(GetTickerResponse.to_json())

# convert the object into a dict
get_ticker_response_dict = get_ticker_response_instance.to_dict()
# create an instance of GetTickerResponse from a dict
get_ticker_response_from_dict = GetTickerResponse.from_dict(get_ticker_response_dict)

[Back to Model list] [Back to API list] [Back to README]