| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| name | str | [optional] | |
| fields | List[ContractField] | [optional] | |
| implementation_name | str | [optional] | |
| implementation | str | [optional] | |
| config_contract | str | [optional] | |
| info_link | str | [optional] | |
| message | ProviderMessage | [optional] | |
| tags | List[int] | [optional] | |
| presets | List[DownloadClientResource] | [optional] | |
| enable | bool | [optional] | |
| protocol | DownloadProtocol | [optional] | |
| priority | int | [optional] | |
| remove_completed_downloads | bool | [optional] | |
| remove_failed_downloads | bool | [optional] |
from sonarr.models.download_client_resource import DownloadClientResource
# TODO update the JSON string below
json = "{}"
# create an instance of DownloadClientResource from a JSON string
download_client_resource_instance = DownloadClientResource.from_json(json)
# print the JSON string representation of the object
print(DownloadClientResource.to_json())
# convert the object into a dict
download_client_resource_dict = download_client_resource_instance.to_dict()
# create an instance of DownloadClientResource from a dict
download_client_resource_from_dict = DownloadClientResource.from_dict(download_client_resource_dict)