Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.23 KB

File metadata and controls

38 lines (29 loc) · 1.23 KB

Series

Properties

Name Type Description Notes
id int [optional]
foreign_series_id str [optional]
title str [optional]
description str [optional]
numbered bool [optional]
work_count int [optional]
primary_work_count int [optional]
link_items SeriesBookLinkListLazyLoaded [optional]
books BookListLazyLoaded [optional]
foreign_author_id str [optional]

Example

from readarr.models.series import Series

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

# convert the object into a dict
series_dict = series_instance.to_dict()
# create an instance of Series from a dict
series_from_dict = Series.from_dict(series_dict)

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