Name | Type | Description | Notes |
---|---|---|---|
addresses | List[VaultWalletAddress] | [optional] | |
paging | PaginatedAddressResponsePaging | [optional] |
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)