Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

ProfileSecondaryAlbumTypeItemResource.md

File metadata and controls

31 lines (22 loc) · 1.29 KB

ProfileSecondaryAlbumTypeItemResource

Properties

Name Type Description Notes
id int [optional]
album_type SecondaryAlbumType [optional]
allowed bool [optional]

Example

from lidarr.models.profile_secondary_album_type_item_resource import ProfileSecondaryAlbumTypeItemResource

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

# convert the object into a dict
profile_secondary_album_type_item_resource_dict = profile_secondary_album_type_item_resource_instance.to_dict()
# create an instance of ProfileSecondaryAlbumTypeItemResource from a dict
profile_secondary_album_type_item_resource_from_dict = ProfileSecondaryAlbumTypeItemResource.from_dict(profile_secondary_album_type_item_resource_dict)

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