Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.38 KB

File metadata and controls

31 lines (23 loc) · 1.38 KB

ContactListSearch200ResponseMetaPage

Pagination parameters and total results count

Properties

Name Type Description Notes
total int Total items count at all of the pages [optional]
limit int Limit items at one page [optional]
offset int Get items starting at offset [optional] [default to 0]

Example

from bsg_api.models.contact_list_search200_response_meta_page import ContactListSearch200ResponseMetaPage

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

# convert the object into a dict
contact_list_search200_response_meta_page_dict = contact_list_search200_response_meta_page_instance.to_dict()
# create an instance of ContactListSearch200ResponseMetaPage from a dict
contact_list_search200_response_meta_page_from_dict = ContactListSearch200ResponseMetaPage.from_dict(contact_list_search200_response_meta_page_dict)

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