Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.25 KB

ParseResource.md

File metadata and controls

35 lines (26 loc) · 1.25 KB

ParseResource

Properties

Name Type Description Notes
id int [optional]
title str [optional]
parsed_album_info ParsedAlbumInfo [optional]
artist ArtistResource [optional]
albums List[AlbumResource] [optional]
custom_formats List[CustomFormatResource] [optional]
custom_format_score int [optional]

Example

from lidarr.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]