Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 947 Bytes

PrimaryAlbumType.md

File metadata and controls

30 lines (21 loc) · 947 Bytes

PrimaryAlbumType

Properties

Name Type Description Notes
id int [optional]
name str [optional]

Example

from lidarr.models.primary_album_type import PrimaryAlbumType

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

# convert the object into a dict
primary_album_type_dict = primary_album_type_instance.to_dict()
# create an instance of PrimaryAlbumType from a dict
primary_album_type_from_dict = PrimaryAlbumType.from_dict(primary_album_type_dict)

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