Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.39 KB

File metadata and controls

33 lines (24 loc) · 1.39 KB

MetadataProfileResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
primary_album_types List[ProfilePrimaryAlbumTypeItemResource] [optional]
secondary_album_types List[ProfileSecondaryAlbumTypeItemResource] [optional]
release_statuses List[ProfileReleaseStatusItemResource] [optional]

Example

from lidarr.models.metadata_profile_resource import MetadataProfileResource

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

# convert the object into a dict
metadata_profile_resource_dict = metadata_profile_resource_instance.to_dict()
# create an instance of MetadataProfileResource from a dict
metadata_profile_resource_from_dict = MetadataProfileResource.from_dict(metadata_profile_resource_dict)

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