Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 2.28 KB

MediaManagementConfigResource.md

File metadata and controls

50 lines (41 loc) · 2.28 KB

MediaManagementConfigResource

Properties

Name Type Description Notes
id int [optional]
auto_unmonitor_previously_downloaded_movies bool [optional]
recycle_bin str [optional]
recycle_bin_cleanup_days int [optional]
download_propers_and_repacks ProperDownloadTypes [optional]
create_empty_movie_folders bool [optional]
delete_empty_folders bool [optional]
file_date FileDateType [optional]
rescan_after_refresh RescanAfterRefreshType [optional]
auto_rename_folders bool [optional]
paths_default_static bool [optional]
set_permissions_linux bool [optional]
chmod_folder str [optional]
chown_group str [optional]
skip_free_space_check_when_importing bool [optional]
minimum_free_space_when_importing int [optional]
copy_using_hardlinks bool [optional]
use_script_import bool [optional]
script_import_path str [optional]
import_extra_files bool [optional]
extra_file_extensions str [optional]
enable_media_info bool [optional]

Example

from whisparr.models.media_management_config_resource import MediaManagementConfigResource

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

# convert the object into a dict
media_management_config_resource_dict = media_management_config_resource_instance.to_dict()
# create an instance of MediaManagementConfigResource from a dict
media_management_config_resource_from_dict = MediaManagementConfigResource.from_dict(media_management_config_resource_dict)

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