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