Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.4 KB

File metadata and controls

38 lines (29 loc) · 1.4 KB

MovieEditorResource

Properties

Name Type Description Notes
movie_ids List[int] [optional]
monitored bool [optional]
quality_profile_id int [optional]
minimum_availability MovieStatusType [optional]
root_folder_path str [optional]
tags List[int] [optional]
apply_tags ApplyTags [optional]
move_files bool [optional]
delete_files bool [optional]
add_import_exclusion bool [optional]

Example

from radarr.models.movie_editor_resource import MovieEditorResource

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

# convert the object into a dict
movie_editor_resource_dict = movie_editor_resource_instance.to_dict()
# create an instance of MovieEditorResource from a dict
movie_editor_resource_from_dict = MovieEditorResource.from_dict(movie_editor_resource_dict)

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