NotificationTransport Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| mode | NotificationTransportModeEnum | [optional] | |
| webhook_url | str | [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] |
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)