Skip to content

DEResponsePagination

Properties

Name Type Description Notes
current_results_count int Number of results returned in the current response.
limit int Results limit, used in the request.
offset int Results offset, used in the request.

Example

from odm_api.models.de_response_pagination import DEResponsePagination

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

# convert the object into a dict
de_response_pagination_dict = de_response_pagination_instance.to_dict()
# create an instance of DEResponsePagination from a dict
de_response_pagination_from_dict = DEResponsePagination.from_dict(de_response_pagination_dict)
[Back to Model list] [Back to API list] [Back to README]