Pagination parameters and total results count
| 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] |
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)