Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.46 KB

DelayProfileResource.md

File metadata and controls

39 lines (30 loc) · 1.46 KB

DelayProfileResource

Properties

Name Type Description Notes
id int [optional]
enable_usenet bool [optional]
enable_torrent bool [optional]
preferred_protocol DownloadProtocol [optional]
usenet_delay int [optional]
torrent_delay int [optional]
bypass_if_highest_quality bool [optional]
bypass_if_above_custom_format_score bool [optional]
minimum_custom_format_score int [optional]
order int [optional]
tags List[int] [optional]

Example

from sonarr.models.delay_profile_resource import DelayProfileResource

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

# convert the object into a dict
delay_profile_resource_dict = delay_profile_resource_instance.to_dict()
# create an instance of DelayProfileResource from a dict
delay_profile_resource_from_dict = DelayProfileResource.from_dict(delay_profile_resource_dict)

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