Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.34 KB

EpisodeResourcePagingResource.md

File metadata and controls

34 lines (25 loc) · 1.34 KB

EpisodeResourcePagingResource

Properties

Name Type Description Notes
page int [optional]
page_size int [optional]
sort_key str [optional]
sort_direction SortDirection [optional]
total_records int [optional]
records List[EpisodeResource] [optional]

Example

from sonarr.models.episode_resource_paging_resource import EpisodeResourcePagingResource

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

# convert the object into a dict
episode_resource_paging_resource_dict = episode_resource_paging_resource_instance.to_dict()
# create an instance of EpisodeResourcePagingResource from a dict
episode_resource_paging_resource_from_dict = EpisodeResourcePagingResource.from_dict(episode_resource_paging_resource_dict)

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