| 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[BookResource] | [optional] |
from readarr.models.book_resource_paging_resource import BookResourcePagingResource
# TODO update the JSON string below
json = "{}"
# create an instance of BookResourcePagingResource from a JSON string
book_resource_paging_resource_instance = BookResourcePagingResource.from_json(json)
# print the JSON string representation of the object
print(BookResourcePagingResource.to_json())
# convert the object into a dict
book_resource_paging_resource_dict = book_resource_paging_resource_instance.to_dict()
# create an instance of BookResourcePagingResource from a dict
book_resource_paging_resource_from_dict = BookResourcePagingResource.from_dict(book_resource_paging_resource_dict)