| Name | Type | Description | Notes |
|---|---|---|---|
| page | float | [optional] | |
| pages | float | [optional] | |
| results | float | [optional] |
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)