Name | Type | Description | Notes |
---|---|---|---|
exchange_account | List[ExchangeAccount] | [optional] | |
paging | ExchangeAccountsPagedPaging | [optional] | |
prev_url | str | [optional] | |
next_url | str | [optional] |
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)