Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.24 KB

File metadata and controls

34 lines (25 loc) · 1.24 KB

PolicyContext

Properties

Name Type Description Notes
user PolicyContextUser
groups PolicyContextGroups
risk PolicyContextRisk [optional]
ip str The network rule condition, zone, or IP address [optional]
zones PolicyContextZones [optional]
device PolicyContextDevice [optional]

Example

from okta.models.policy_context import PolicyContext

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

# convert the object into a dict
policy_context_dict = policy_context_instance.to_dict()
# create an instance of PolicyContext from a dict
policy_context_from_dict = PolicyContext.from_dict(policy_context_dict)

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