Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.34 KB

File metadata and controls

34 lines (25 loc) · 1.34 KB

HistoryResourcePagingResource

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[HistoryResource] [optional]

Example

from readarr.models.history_resource_paging_resource import HistoryResourcePagingResource

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

# convert the object into a dict
history_resource_paging_resource_dict = history_resource_paging_resource_instance.to_dict()
# create an instance of HistoryResourcePagingResource from a dict
history_resource_paging_resource_from_dict = HistoryResourcePagingResource.from_dict(history_resource_paging_resource_dict)

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