Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.44 KB

PaginatedAddressResponsePaging.md

File metadata and controls

30 lines (21 loc) · 1.44 KB

PaginatedAddressResponsePaging

Properties

Name Type Description Notes
before str A string representing a cursor. Users can use this with a new request to this API endpoint as the “before” request parameter to fetch the previous page of results. [optional]
after str A string representing a cursor. Users can use this with a new request to this API endpoint as the “after” request parameter to fetch the next page of results. [optional]

Example

from fireblocks.models.paginated_address_response_paging import PaginatedAddressResponsePaging

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

# convert the object into a dict
paginated_address_response_paging_dict = paginated_address_response_paging_instance.to_dict()
# create an instance of PaginatedAddressResponsePaging from a dict
paginated_address_response_paging_from_dict = PaginatedAddressResponsePaging.from_dict(paginated_address_response_paging_dict)

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