Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 1.75 KB

File metadata and controls

50 lines (41 loc) · 1.75 KB

Edition

Properties

Name Type Description Notes
id int [optional]
book_id int [optional]
foreign_edition_id str [optional]
title_slug str [optional]
isbn13 str [optional]
asin str [optional]
title str [optional]
language str [optional]
overview str [optional]
format str [optional]
is_ebook bool [optional]
disambiguation str [optional]
publisher str [optional]
page_count int [optional]
release_date datetime [optional]
images List[MediaCover] [optional]
links List[Links] [optional]
ratings Ratings [optional]
monitored bool [optional]
manual_add bool [optional]
book BookLazyLoaded [optional]
book_files BookFileListLazyLoaded [optional]

Example

from readarr.models.edition import Edition

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

# convert the object into a dict
edition_dict = edition_instance.to_dict()
# create an instance of Edition from a dict
edition_from_dict = Edition.from_dict(edition_dict)

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