Skip to content

Files

32 lines (23 loc) · 1.07 KB

SeasonResource.md

File metadata and controls

32 lines (23 loc) · 1.07 KB

SeasonResource

Properties

Name Type Description Notes
season_number int [optional]
monitored bool [optional]
statistics SeasonStatisticsResource [optional]
images List[MediaCover] [optional]

Example

from sonarr.models.season_resource import SeasonResource

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

# convert the object into a dict
season_resource_dict = season_resource_instance.to_dict()
# create an instance of SeasonResource from a dict
season_resource_from_dict = SeasonResource.from_dict(season_resource_dict)

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