| Name | Type | Description | Notes |
|---|---|---|---|
| monitor | MonitorTypes | [optional] | |
| books_to_monitor | List[str] | [optional] | |
| monitored | bool | [optional] | |
| search_for_missing_books | bool | [optional] |
from readarr.models.add_author_options import AddAuthorOptions
# TODO update the JSON string below
json = "{}"
# create an instance of AddAuthorOptions from a JSON string
add_author_options_instance = AddAuthorOptions.from_json(json)
# print the JSON string representation of the object
print(AddAuthorOptions.to_json())
# convert the object into a dict
add_author_options_dict = add_author_options_instance.to_dict()
# create an instance of AddAuthorOptions from a dict
add_author_options_from_dict = AddAuthorOptions.from_dict(add_author_options_dict)