Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.06 KB

File metadata and controls

36 lines (27 loc) · 1.06 KB

Season

Properties

Name Type Description Notes
id float [optional]
air_date str [optional]
episode_count float [optional]
name str [optional]
overview str [optional]
poster_path str [optional]
season_number float [optional]
episodes List[Episode] [optional]

Example

from seerr.models.season import Season

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

# convert the object into a dict
season_dict = season_instance.to_dict()
# create an instance of Season from a dict
season_from_dict = Season.from_dict(season_dict)

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