Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

File metadata and controls

33 lines (24 loc) · 1.12 KB

LogSecurityContext

Properties

Name Type Description Notes
as_number int [optional] [readonly]
as_org str [optional] [readonly]
domain str [optional] [readonly]
isp str [optional] [readonly]
is_proxy bool [optional] [readonly]

Example

from okta.models.log_security_context import LogSecurityContext

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

# convert the object into a dict
log_security_context_dict = log_security_context_instance.to_dict()
# create an instance of LogSecurityContext from a dict
log_security_context_from_dict = LogSecurityContext.from_dict(log_security_context_dict)

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