PatchedNotificationWebhooksRequest
Properties
| Name |
Type |
Description |
Notes |
| 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] |
| owner |
int |
Owner/receiver of notification, if empty processed as system notification |
[optional] |
Example
from defectdojo_api_generated.models.patched_notification_webhooks_request import PatchedNotificationWebhooksRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedNotificationWebhooksRequest from a JSON string
patched_notification_webhooks_request_instance = PatchedNotificationWebhooksRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedNotificationWebhooksRequest.to_json())
# convert the object into a dict
patched_notification_webhooks_request_dict = patched_notification_webhooks_request_instance.to_dict()
# create an instance of PatchedNotificationWebhooksRequest from a dict
patched_notification_webhooks_request_from_dict = PatchedNotificationWebhooksRequest.from_dict(patched_notification_webhooks_request_dict)
[Back to Model list] [Back to API list] [Back to README]