Skip to content

Latest commit

 

History

History
73 lines (64 loc) · 3.07 KB

File metadata and controls

73 lines (64 loc) · 3.07 KB

SeriesResource

Properties

Name Type Description Notes
id int [optional]
title str [optional]
alternate_titles List[AlternateTitleResource] [optional]
sort_title str [optional]
status SeriesStatusType [optional]
ended bool [optional] [readonly]
profile_name str [optional]
overview str [optional]
next_airing datetime [optional]
previous_airing datetime [optional]
network str [optional]
air_time str [optional]
images List[MediaCover] [optional]
original_language Language [optional]
remote_poster str [optional]
seasons List[SeasonResource] [optional]
year int [optional]
path str [optional]
quality_profile_id int [optional]
season_folder bool [optional]
monitored bool [optional]
monitor_new_items NewItemMonitorTypes [optional]
use_scene_numbering bool [optional]
runtime int [optional]
tvdb_id int [optional]
tv_rage_id int [optional]
tv_maze_id int [optional]
tmdb_id int [optional]
first_aired datetime [optional]
last_aired datetime [optional]
series_type SeriesTypes [optional]
clean_title str [optional]
imdb_id str [optional]
title_slug str [optional]
root_folder_path str [optional]
folder str [optional]
certification str [optional]
genres List[str] [optional]
tags List[int] [optional]
added datetime [optional]
add_options AddSeriesOptions [optional]
ratings Ratings [optional]
statistics SeriesStatisticsResource [optional]
episodes_changed bool [optional]
language_profile_id int [optional] [readonly]

Example

from sonarr.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]