You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromfireblocks.models.paginated_address_response_pagingimportPaginatedAddressResponsePaging# TODO update the JSON string belowjson="{}"# create an instance of PaginatedAddressResponsePaging from a JSON stringpaginated_address_response_paging_instance=PaginatedAddressResponsePaging.from_json(json)
# print the JSON string representation of the objectprint(PaginatedAddressResponsePaging.to_json())
# convert the object into a dictpaginated_address_response_paging_dict=paginated_address_response_paging_instance.to_dict()
# create an instance of PaginatedAddressResponsePaging from a dictpaginated_address_response_paging_from_dict=PaginatedAddressResponsePaging.from_dict(paginated_address_response_paging_dict)