| Name | Type | Description | Notes |
|---|---|---|---|
| authors | List[BookshelfAuthorResource] | [optional] | |
| monitoring_options | MonitoringOptions | [optional] | |
| monitor_new_items | NewItemMonitorTypes | [optional] |
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)