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