Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.05 KB

File metadata and controls

34 lines (25 loc) · 1.05 KB

ExchangeStats

Properties

Name Type Description Notes
code int
message str [optional]
total int
order_book_stats List[OrderBookStats]
daily_usd_volume float
daily_trades_count int

Example

from lighter.models.exchange_stats import ExchangeStats

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

# convert the object into a dict
exchange_stats_dict = exchange_stats_instance.to_dict()
# create an instance of ExchangeStats from a dict
exchange_stats_from_dict = ExchangeStats.from_dict(exchange_stats_dict)

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