Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

SeasonPassResource.md

File metadata and controls

30 lines (21 loc) · 1.06 KB

SeasonPassResource

Properties

Name Type Description Notes
series List[SeasonPassSeriesResource] [optional]
monitoring_options MonitoringOptions [optional]

Example

from sonarr.models.season_pass_resource import SeasonPassResource

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

# convert the object into a dict
season_pass_resource_dict = season_pass_resource_instance.to_dict()
# create an instance of SeasonPassResource from a dict
season_pass_resource_from_dict = SeasonPassResource.from_dict(season_pass_resource_dict)

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