Skip to content

PaginationInfo

Properties

Name Type Description Notes
count int [optional]
total int [optional]
offset int [optional]
limit int [optional]

Example

from odm_api.models.pagination_info import PaginationInfo

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

# convert the object into a dict
pagination_info_dict = pagination_info_instance.to_dict()
# create an instance of PaginationInfo from a dict
pagination_info_from_dict = PaginationInfo.from_dict(pagination_info_dict)
[Back to Model list] [Back to API list] [Back to README]