NotificationWebhookMapping Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | UUID | [readonly] | |
| name | str | ||
| expression | str |
from authentik_client.models.notification_webhook_mapping import NotificationWebhookMapping
# TODO update the JSON string below
json = "{}"
# create an instance of NotificationWebhookMapping from a JSON string
notification_webhook_mapping_instance = NotificationWebhookMapping.from_json(json)
# print the JSON string representation of the object
print(NotificationWebhookMapping.to_json())
# convert the object into a dict
notification_webhook_mapping_dict = notification_webhook_mapping_instance.to_dict()
# create an instance of NotificationWebhookMapping from a dict
notification_webhook_mapping_from_dict = NotificationWebhookMapping.from_dict(notification_webhook_mapping_dict)