Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1 KB

File metadata and controls

31 lines (22 loc) · 1 KB

WebhookSettings

Properties

Name Type Description Notes
enabled bool [optional]
types float [optional]
options WebhookSettingsOptions [optional]

Example

from overseerr.models.webhook_settings import WebhookSettings

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

# convert the object into a dict
webhook_settings_dict = webhook_settings_instance.to_dict()
# create an instance of WebhookSettings from a dict
webhook_settings_from_dict = WebhookSettings.from_dict(webhook_settings_dict)

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