| Name | Type | Description | Notes |
|---|---|---|---|
| migrated | bool | [optional] | |
| platform | DevicePolicyRuleConditionPlatform | [optional] | |
| rooted | bool | [optional] | |
| trust_level | DevicePolicyTrustLevel | [optional] | |
| expression | str | [optional] |
from okta.models.context_policy_rule_condition import ContextPolicyRuleCondition
# TODO update the JSON string below
json = "{}"
# create an instance of ContextPolicyRuleCondition from a JSON string
context_policy_rule_condition_instance = ContextPolicyRuleCondition.from_json(json)
# print the JSON string representation of the object
print(ContextPolicyRuleCondition.to_json())
# convert the object into a dict
context_policy_rule_condition_dict = context_policy_rule_condition_instance.to_dict()
# create an instance of ContextPolicyRuleCondition from a dict
context_policy_rule_condition_from_dict = ContextPolicyRuleCondition.from_dict(context_policy_rule_condition_dict)