Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.32 KB

DownloadClientBulkResource.md

File metadata and controls

35 lines (26 loc) · 1.32 KB

DownloadClientBulkResource

Properties

Name Type Description Notes
ids List[int] [optional]
tags List[int] [optional]
apply_tags ApplyTags [optional]
enable bool [optional]
priority int [optional]
remove_completed_downloads bool [optional]
remove_failed_downloads bool [optional]

Example

from sonarr.models.download_client_bulk_resource import DownloadClientBulkResource

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

# convert the object into a dict
download_client_bulk_resource_dict = download_client_bulk_resource_instance.to_dict()
# create an instance of DownloadClientBulkResource from a dict
download_client_bulk_resource_from_dict = DownloadClientBulkResource.from_dict(download_client_bulk_resource_dict)

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