Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.32 KB

ParseResource.md

File metadata and controls

36 lines (27 loc) · 1.32 KB

ParseResource

Properties

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]

Example

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)

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