Event Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| user | Dict[str, object] | [optional] | |
| action | EventActions | [optional] | |
| app | str | [optional] | |
| context | Dict[str, object] | [optional] | |
| client_ip | str | [optional] | |
| expires | datetime | [optional] | |
| brand | Dict[str, object] | [optional] |
from authentik_client.models.patched_event_request import PatchedEventRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedEventRequest from a JSON string
patched_event_request_instance = PatchedEventRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedEventRequest.to_json())
# convert the object into a dict
patched_event_request_dict = patched_event_request_instance.to_dict()
# create an instance of PatchedEventRequest from a dict
patched_event_request_from_dict = PatchedEventRequest.from_dict(patched_event_request_dict)