Notification Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| hyperlink | str | [optional] | |
| hyperlink_label | str | [optional] | |
| event | EventRequest | [optional] | |
| seen | bool | [optional] |
from authentik_client.models.notification_request import NotificationRequest
# TODO update the JSON string below
json = "{}"
# create an instance of NotificationRequest from a JSON string
notification_request_instance = NotificationRequest.from_json(json)
# print the JSON string representation of the object
print(NotificationRequest.to_json())
# convert the object into a dict
notification_request_dict = notification_request_instance.to_dict()
# create an instance of NotificationRequest from a dict
notification_request_from_dict = NotificationRequest.from_dict(notification_request_dict)