Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

VaultAccountsPagedResponsePaging

Properties

Name Type Description Notes
before str [optional]
after str [optional]

Example

from fireblocks.models.vault_accounts_paged_response_paging import VaultAccountsPagedResponsePaging

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

# convert the object into a dict
vault_accounts_paged_response_paging_dict = vault_accounts_paged_response_paging_instance.to_dict()
# create an instance of VaultAccountsPagedResponsePaging from a dict
vault_accounts_paged_response_paging_from_dict = VaultAccountsPagedResponsePaging.from_dict(vault_accounts_paged_response_paging_dict)

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