Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.29 KB

File metadata and controls

34 lines (25 loc) · 1.29 KB

BookResourcePagingResource

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

Example

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)

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