Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 1.99 KB

File metadata and controls

51 lines (42 loc) · 1.99 KB

Book

Properties

Name Type Description Notes
id int [optional]
author_metadata_id int [optional]
foreign_book_id str [optional]
foreign_edition_id str [optional]
title_slug str [optional]
title str [optional]
release_date datetime [optional]
links List[Links] [optional]
genres List[str] [optional]
related_books List[int] [optional]
ratings Ratings [optional]
last_search_time datetime [optional]
clean_title str [optional]
monitored bool [optional]
any_edition_ok bool [optional]
last_info_sync datetime [optional]
added datetime [optional]
add_options AddBookOptions [optional]
author_metadata AuthorMetadataLazyLoaded [optional]
author AuthorLazyLoaded [optional]
editions EditionListLazyLoaded [optional]
book_files BookFileListLazyLoaded [optional]
series_links SeriesBookLinkListLazyLoaded [optional]

Example

from readarr.models.book import Book

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

# convert the object into a dict
book_dict = book_instance.to_dict()
# create an instance of Book from a dict
book_from_dict = Book.from_dict(book_dict)

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