Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

RespGetExchangeMetrics

Properties

Name Type Description Notes
code int
message str [optional]
metrics List[ExchangeMetric]

Example

from lighter.models.resp_get_exchange_metrics import RespGetExchangeMetrics

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

# convert the object into a dict
resp_get_exchange_metrics_dict = resp_get_exchange_metrics_instance.to_dict()
# create an instance of RespGetExchangeMetrics from a dict
resp_get_exchange_metrics_from_dict = RespGetExchangeMetrics.from_dict(resp_get_exchange_metrics_dict)

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