Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 975 Bytes

File metadata and controls

31 lines (22 loc) · 975 Bytes

LogUserAgent

Properties

Name Type Description Notes
browser str [optional] [readonly]
os str [optional] [readonly]
raw_user_agent str [optional] [readonly]

Example

from okta.models.log_user_agent import LogUserAgent

# TODO update the JSON string below
json = "{}"
# create an instance of LogUserAgent from a JSON string
log_user_agent_instance = LogUserAgent.from_json(json)
# print the JSON string representation of the object
print(LogUserAgent.to_json())

# convert the object into a dict
log_user_agent_dict = log_user_agent_instance.to_dict()
# create an instance of LogUserAgent from a dict
log_user_agent_from_dict = LogUserAgent.from_dict(log_user_agent_dict)

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