| Name |
Type |
Description |
Notes |
| title |
str |
|
[optional] |
| title_without_year |
str |
|
[optional] |
| year |
int |
|
[optional] |
| all_titles |
List[str] |
|
[optional] |
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]