Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

SeriesResource

Properties

Name Type Description Notes
id int [optional]
title str [optional]
description str [optional]
links List[SeriesBookLinkResource] [optional]

Example

from readarr.models.series_resource import SeriesResource

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

# convert the object into a dict
series_resource_dict = series_resource_instance.to_dict()
# create an instance of SeriesResource from a dict
series_resource_from_dict = SeriesResource.from_dict(series_resource_dict)

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