Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

VaultAccountsPagedResponse.md

File metadata and controls

32 lines (23 loc) · 1.25 KB

VaultAccountsPagedResponse

Properties

Name Type Description Notes
accounts List[VaultAccount] [optional]
paging VaultAccountsPagedResponsePaging [optional]
previous_url str [optional]
next_url str [optional]

Example

from fireblocks.models.vault_accounts_paged_response import VaultAccountsPagedResponse

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

# convert the object into a dict
vault_accounts_paged_response_dict = vault_accounts_paged_response_instance.to_dict()
# create an instance of VaultAccountsPagedResponse from a dict
vault_accounts_paged_response_from_dict = VaultAccountsPagedResponse.from_dict(vault_accounts_paged_response_dict)

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