Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
title | str | [optional] | |
parsed_episode_info | ParsedEpisodeInfo | [optional] | |
series | SeriesResource | [optional] | |
episodes | List[EpisodeResource] | [optional] | |
languages | List[Language] | [optional] | |
custom_formats | List[CustomFormatResource] | [optional] | |
custom_format_score | int | [optional] |
from sonarr.models.parse_resource import ParseResource
# TODO update the JSON string below
json = "{}"
# create an instance of ParseResource from a JSON string
parse_resource_instance = ParseResource.from_json(json)
# print the JSON string representation of the object
print(ParseResource.to_json())
# convert the object into a dict
parse_resource_dict = parse_resource_instance.to_dict()
# create an instance of ParseResource from a dict
parse_resource_from_dict = ParseResource.from_dict(parse_resource_dict)