Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 970 Bytes

File metadata and controls

30 lines (21 loc) · 970 Bytes

AddBookOptions

Properties

Name Type Description Notes
add_type BookAddType [optional]
search_for_new_book bool [optional]

Example

from readarr.models.add_book_options import AddBookOptions

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

# convert the object into a dict
add_book_options_dict = add_book_options_instance.to_dict()
# create an instance of AddBookOptions from a dict
add_book_options_from_dict = AddBookOptions.from_dict(add_book_options_dict)

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