Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

NotificationWebhookMapping

NotificationWebhookMapping Serializer

Properties

Name Type Description Notes
pk UUID [readonly]
name str
expression str

Example

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)

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