| 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] |
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)