Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.42 KB

File metadata and controls

38 lines (29 loc) · 1.42 KB

AuthorEditorResource

Properties

Name Type Description Notes
author_ids List[int] [optional]
monitored bool [optional]
monitor_new_items NewItemMonitorTypes [optional]
quality_profile_id int [optional]
metadata_profile_id int [optional]
root_folder_path str [optional]
tags List[int] [optional]
apply_tags ApplyTags [optional]
move_files bool [optional]
delete_files bool [optional]

Example

from readarr.models.author_editor_resource import AuthorEditorResource

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

# convert the object into a dict
author_editor_resource_dict = author_editor_resource_instance.to_dict()
# create an instance of AuthorEditorResource from a dict
author_editor_resource_from_dict = AuthorEditorResource.from_dict(author_editor_resource_dict)

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