NotificationsRequest

Properties

Name Type Description Notes
product int [optional]
user int [optional]
product_type_added List[str] [optional] [default to ["alert"]]
product_added List[str] [optional] [default to ["alert"]]
engagement_added List[str] [optional] [default to ["alert"]]
test_added List[str] [optional] [default to ["alert"]]
scan_added List[str] [optional] [default to ["alert"]]
jira_update List[str] [optional] [default to ["alert"]]
upcoming_engagement List[str] [optional] [default to ["alert"]]
stale_engagement List[str] [optional] [default to ["alert"]]
auto_close_engagement List[str] [optional] [default to ["alert"]]
close_engagement List[str] [optional] [default to ["alert"]]
user_mentioned List[str] [optional] [default to ["alert"]]
code_review List[str] [optional] [default to ["alert"]]
review_requested List[str] [optional] [default to ["alert"]]
other List[str] [optional] [default to ["alert"]]
sla_breach List[str] [optional] [default to ["alert"]]
sla_breach_combined List[str] [optional] [default to ["alert"]]
risk_acceptance_expiration List[str] [optional] [default to ["alert"]]
template bool [optional] [default to False]
scan_added_empty str Triggered whenever an (re-)import has been done (even if that created/updated/closed no findings). * `slack` - slack * `msteams` - msteams * `mail` - mail * `webhooks` - webhooks * `alert` - alert [optional]

Example

from defectdojo_api_generated.models.notifications_request import NotificationsRequest

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

# convert the object into a dict
notifications_request_dict = notifications_request_instance.to_dict()
# create an instance of NotificationsRequest from a dict
notifications_request_from_dict = NotificationsRequest.from_dict(notifications_request_dict)

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