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