| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | bool | [optional] | |
| types | float | [optional] | |
| options | WebhookSettingsOptions | [optional] |
from seerr.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)