Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 884 Bytes

File metadata and controls

31 lines (22 loc) · 884 Bytes

PageInfo

Properties

Name Type Description Notes
page float [optional]
pages float [optional]
results float [optional]

Example

from seerr.models.page_info import PageInfo

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

# convert the object into a dict
page_info_dict = page_info_instance.to_dict()
# create an instance of PageInfo from a dict
page_info_from_dict = PageInfo.from_dict(page_info_dict)

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