Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

PaginatedAddressResponse.md

File metadata and controls

30 lines (21 loc) · 1.15 KB

PaginatedAddressResponse

Properties

Name Type Description Notes
addresses List[VaultWalletAddress] [optional]
paging PaginatedAddressResponsePaging [optional]

Example

from fireblocks.models.paginated_address_response import PaginatedAddressResponse

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

# convert the object into a dict
paginated_address_response_dict = paginated_address_response_instance.to_dict()
# create an instance of PaginatedAddressResponse from a dict
paginated_address_response_from_dict = PaginatedAddressResponse.from_dict(paginated_address_response_dict)

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