Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 787 Bytes

Paging.md

File metadata and controls

29 lines (20 loc) · 787 Bytes

Paging

Properties

Name Type Description Notes
next str Cursor to the next page

Example

from fireblocks.models.paging import Paging

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

# convert the object into a dict
paging_dict = paging_instance.to_dict()
# create an instance of Paging from a dict
paging_from_dict = Paging.from_dict(paging_dict)

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