Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.95 KB

File metadata and controls

38 lines (29 loc) · 1.95 KB

PatchedNotificationTransportRequest

NotificationTransport Serializer

Properties

Name Type Description Notes
name str [optional]
mode NotificationTransportModeEnum [optional]
webhook_url str [optional]
webhook_ca UUID When set, the selected ceritifcate is used to validate the certificate of the webhook server. [optional]
webhook_mapping_body UUID Customize the body of the request. Mapping should return data that is JSON-serializable. [optional]
webhook_mapping_headers UUID Configure additional headers to be sent. Mapping should return a dictionary of key-value pairs [optional]
email_subject_prefix str [optional]
email_template str [optional]
send_once bool Only send notification once, for example when sending a webhook into a chat channel. [optional]

Example

from authentik_client.models.patched_notification_transport_request import PatchedNotificationTransportRequest

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

# convert the object into a dict
patched_notification_transport_request_dict = patched_notification_transport_request_instance.to_dict()
# create an instance of PatchedNotificationTransportRequest from a dict
patched_notification_transport_request_from_dict = PatchedNotificationTransportRequest.from_dict(patched_notification_transport_request_dict)

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