Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.12 KB

File metadata and controls

34 lines (25 loc) · 1.12 KB

LogClient

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]