Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

BookshelfResource

Properties

Name Type Description Notes
authors List[BookshelfAuthorResource] [optional]
monitoring_options MonitoringOptions [optional]
monitor_new_items NewItemMonitorTypes [optional]

Example

from readarr.models.bookshelf_resource import BookshelfResource

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

# convert the object into a dict
bookshelf_resource_dict = bookshelf_resource_instance.to_dict()
# create an instance of BookshelfResource from a dict
bookshelf_resource_from_dict = BookshelfResource.from_dict(bookshelf_resource_dict)

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