| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| title |
str |
|
[optional] |
| author_title |
str |
|
[optional] |
| series_title |
str |
|
[optional] |
| disambiguation |
str |
|
[optional] |
| overview |
str |
|
[optional] |
| author_id |
int |
|
[optional] |
| foreign_book_id |
str |
|
[optional] |
| foreign_edition_id |
str |
|
[optional] |
| title_slug |
str |
|
[optional] |
| monitored |
bool |
|
[optional] |
| any_edition_ok |
bool |
|
[optional] |
| ratings |
Ratings |
|
[optional] |
| release_date |
datetime |
|
[optional] |
| page_count |
int |
|
[optional] |
| genres |
List[str] |
|
[optional] |
| author |
AuthorResource |
|
[optional] |
| images |
List[MediaCover] |
|
[optional] |
| links |
List[Links] |
|
[optional] |
| statistics |
BookStatisticsResource |
|
[optional] |
| added |
datetime |
|
[optional] |
| add_options |
AddBookOptions |
|
[optional] |
| remote_cover |
str |
|
[optional] |
| editions |
List[EditionResource] |
|
[optional] |
from readarr.models.book_resource import BookResource
# TODO update the JSON string below
json = "{}"
# create an instance of BookResource from a JSON string
book_resource_instance = BookResource.from_json(json)
# print the JSON string representation of the object
print(BookResource.to_json())
# convert the object into a dict
book_resource_dict = book_resource_instance.to_dict()
# create an instance of BookResource from a dict
book_resource_from_dict = BookResource.from_dict(book_resource_dict)
[Back to Model list] [Back to API list] [Back to README]