Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

ExchangeAccountsPaged.md

File metadata and controls

32 lines (23 loc) · 1.18 KB

ExchangeAccountsPaged

Properties

Name Type Description Notes
exchange_account List[ExchangeAccount] [optional]
paging ExchangeAccountsPagedPaging [optional]
prev_url str [optional]
next_url str [optional]

Example

from fireblocks.models.exchange_accounts_paged import ExchangeAccountsPaged

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

# convert the object into a dict
exchange_accounts_paged_dict = exchange_accounts_paged_instance.to_dict()
# create an instance of ExchangeAccountsPaged from a dict
exchange_accounts_paged_from_dict = ExchangeAccountsPaged.from_dict(exchange_accounts_paged_dict)

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