Name | Type | Description | Notes |
---|---|---|---|
monitor | MonitorTypes | [optional] | |
albums_to_monitor | List[str] | [optional] | |
monitored | bool | [optional] | |
search_for_missing_albums | bool | [optional] |
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)