| Name | Type | Description | Notes |
|---|---|---|---|
| device | str | [optional] [readonly] | |
| geographical_context | LogGeographicalContext | [optional] | |
| id | str | [optional] [readonly] | |
| ip_address | str | [optional] [readonly] | |
| user_agent | LogUserAgent | [optional] | |
| zone | str | [optional] [readonly] |
from okta.models.log_client import LogClient
# TODO update the JSON string below
json = "{}"
# create an instance of LogClient from a JSON string
log_client_instance = LogClient.from_json(json)
# print the JSON string representation of the object
print(LogClient.to_json())
# convert the object into a dict
log_client_dict = log_client_instance.to_dict()
# create an instance of LogClient from a dict
log_client_from_dict = LogClient.from_dict(log_client_dict)