| 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] |
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)