Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.4 KB

File metadata and controls

31 lines (22 loc) · 1.4 KB

ContactsPagedResponse

Properties

Name Type Description Notes
data List[Contact] The page of contacts
next str Cursor to the next page; absent when the current page is the last. Opaque, and bound to the sort that minted it — replay it unchanged and keep sortBy/order steady across pages. [optional]
total int The number of contacts matching the filters, ignoring pagination. Present only when the request passed `includeTotal=true`; the key is absent otherwise. [optional]

Example

from fireblocks.models.contacts_paged_response import ContactsPagedResponse

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

# convert the object into a dict
contacts_paged_response_dict = contacts_paged_response_instance.to_dict()
# create an instance of ContactsPagedResponse from a dict
contacts_paged_response_from_dict = ContactsPagedResponse.from_dict(contacts_paged_response_dict)

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