| Name | Type | Description | Notes |
|---|---|---|---|
| actor | LogActor | [optional] | |
| authentication_context | LogAuthenticationContext | [optional] | |
| client | LogClient | [optional] | |
| debug_context | LogDebugContext | [optional] | |
| display_message | str | [optional] [readonly] | |
| event_type | str | [optional] [readonly] | |
| legacy_event_type | str | [optional] [readonly] | |
| outcome | LogOutcome | [optional] | |
| published | datetime | [optional] [readonly] | |
| request | LogRequest | [optional] | |
| security_context | LogSecurityContext | [optional] | |
| severity | LogSeverity | [optional] | |
| target | List[LogTarget] | [optional] [readonly] | |
| transaction | LogTransaction | [optional] | |
| uuid | str | [optional] [readonly] | |
| version | str | [optional] [readonly] |
from okta.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)