NotificationWebhooks

Properties

Name Type Description Notes
id int [optional] [readonly]
name str Name of the incoming webhook [optional]
url str The full URL of the incoming webhook [optional]
header_name str Name of the header required for interacting with Webhook endpoint [optional]
header_value str Content of the header required for interacting with Webhook endpoint [optional]
status str Status of the incoming webhook [optional] [readonly]
first_error datetime If endpoint is active, when error happened first time [optional] [readonly]
last_error datetime If endpoint is active, when error happened last time [optional] [readonly]
note str Description of the latest error [optional] [readonly]
owner int Owner/receiver of notification, if empty processed as system notification [optional]

Example

from defectdojo_api_generated.models.notification_webhooks import NotificationWebhooks

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

# convert the object into a dict
notification_webhooks_dict = notification_webhooks_instance.to_dict()
# create an instance of NotificationWebhooks from a dict
notification_webhooks_from_dict = NotificationWebhooks.from_dict(notification_webhooks_dict)

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