| 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[QueueResource] | [optional] |
from sonarr.models.queue_resource_paging_resource import QueueResourcePagingResource
# TODO update the JSON string below
json = "{}"
# create an instance of QueueResourcePagingResource from a JSON string
queue_resource_paging_resource_instance = QueueResourcePagingResource.from_json(json)
# print the JSON string representation of the object
print(QueueResourcePagingResource.to_json())
# convert the object into a dict
queue_resource_paging_resource_dict = queue_resource_paging_resource_instance.to_dict()
# create an instance of QueueResourcePagingResource from a dict
queue_resource_paging_resource_from_dict = QueueResourcePagingResource.from_dict(queue_resource_paging_resource_dict)