Single log message with all context logged.
| Name | Type | Description | Notes |
|---|---|---|---|
| timestamp | datetime | ||
| log_level | LogLevelEnum | ||
| logger | str | ||
| event | str | ||
| attributes | Dict[str, object] |
from authentik_client.models.log_event import LogEvent
# TODO update the JSON string below
json = "{}"
# create an instance of LogEvent from a JSON string
log_event_instance = LogEvent.from_json(json)
# print the JSON string representation of the object
print(LogEvent.to_json())
# convert the object into a dict
log_event_dict = log_event_instance.to_dict()
# create an instance of LogEvent from a dict
log_event_from_dict = LogEvent.from_dict(log_event_dict)