Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

AddArtistOptions.md

File metadata and controls

32 lines (23 loc) · 1.07 KB

AddArtistOptions

Properties

Name Type Description Notes
monitor MonitorTypes [optional]
albums_to_monitor List[str] [optional]
monitored bool [optional]
search_for_missing_albums bool [optional]

Example

from lidarr.models.add_artist_options import AddArtistOptions

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

# convert the object into a dict
add_artist_options_dict = add_artist_options_instance.to_dict()
# create an instance of AddArtistOptions from a dict
add_artist_options_from_dict = AddArtistOptions.from_dict(add_artist_options_dict)

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