Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 982 Bytes

Pagination.md

File metadata and controls

32 lines (23 loc) · 982 Bytes

Pagination

Properties

Name Type Description Notes
total_items int Total records
current_page int Current Page
per_page int Size of data returned per page
total_pages int Amount of pages

Example

from iblai.models.pagination import Pagination

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

# convert the object into a dict
pagination_dict = pagination_instance.to_dict()
# create an instance of Pagination from a dict
pagination_from_dict = Pagination.from_dict(pagination_dict)

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