Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

MarketsInfoResponse.md

File metadata and controls

30 lines (21 loc) · 1.01 KB

MarketsInfoResponse

MarketsInfoResponse response for /api/2/markets

Properties

Name Type Description Notes
markets List[MarketInfo] [optional]

Example

from luno_openapi.models.markets_info_response import MarketsInfoResponse

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

# convert the object into a dict
markets_info_response_dict = markets_info_response_instance.to_dict()
# create an instance of MarketsInfoResponse from a dict
markets_info_response_from_dict = MarketsInfoResponse.from_dict(markets_info_response_dict)

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