Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

DownloadClientConfigResource.md

File metadata and controls

33 lines (24 loc) · 1.31 KB

DownloadClientConfigResource

Properties

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

Example

from sonarr.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]