| 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] |
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)