Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

File metadata and controls

32 lines (23 loc) · 1.01 KB

SeriesTitleInfo

Properties

Name Type Description Notes
title str [optional]
title_without_year str [optional]
year int [optional]
all_titles List[str] [optional]

Example

from sonarr.models.series_title_info import SeriesTitleInfo

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

# convert the object into a dict
series_title_info_dict = series_title_info_instance.to_dict()
# create an instance of SeriesTitleInfo from a dict
series_title_info_from_dict = SeriesTitleInfo.from_dict(series_title_info_dict)

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