Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 2.02 KB

NotificationResource.md

File metadata and controls

50 lines (41 loc) · 2.02 KB

NotificationResource

Properties

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[NotificationResource] [optional]
link str [optional]
on_grab bool [optional]
on_health_issue bool [optional]
on_health_restored bool [optional]
on_application_update bool [optional]
supports_on_grab bool [optional]
include_manual_grabs bool [optional]
supports_on_health_issue bool [optional]
supports_on_health_restored bool [optional]
include_health_warnings bool [optional]
supports_on_application_update bool [optional]
test_command str [optional]

Example

from prowlarr.models.notification_resource import NotificationResource

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

# convert the object into a dict
notification_resource_dict = notification_resource_instance.to_dict()
# create an instance of NotificationResource from a dict
notification_resource_from_dict = NotificationResource.from_dict(notification_resource_dict)

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