Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.37 KB

File metadata and controls

34 lines (25 loc) · 1.37 KB

DownloadClientConfigResource

Properties

Name Type Description Notes
id int [optional]
download_client_working_folders str [optional]
enable_completed_download_handling bool [optional]
check_for_finished_download_interval int [optional]
auto_redownload_failed bool [optional]
auto_redownload_failed_from_interactive_search bool [optional]

Example

from radarr.models.download_client_config_resource import DownloadClientConfigResource

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

# convert the object into a dict
download_client_config_resource_dict = download_client_config_resource_instance.to_dict()
# create an instance of DownloadClientConfigResource from a dict
download_client_config_resource_from_dict = DownloadClientConfigResource.from_dict(download_client_config_resource_dict)

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