Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 985 Bytes

File metadata and controls

30 lines (21 loc) · 985 Bytes

AddAlbumOptions

Properties

Name Type Description Notes
add_type AlbumAddType [optional]
search_for_new_album bool [optional]

Example

from lidarr.models.add_album_options import AddAlbumOptions

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

# convert the object into a dict
add_album_options_dict = add_album_options_instance.to_dict()
# create an instance of AddAlbumOptions from a dict
add_album_options_from_dict = AddAlbumOptions.from_dict(add_album_options_dict)

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