| Name | Type | Description | Notes |
|---|---|---|---|
| migrated | bool | [optional] | |
| platform | DevicePolicyRuleConditionPlatform | [optional] | |
| rooted | bool | [optional] | |
| trust_level | DevicePolicyTrustLevel | [optional] | |
| managed | bool | [optional] | |
| registered | bool | [optional] | |
| assurance | DevicePolicyRuleConditionAssurance | [optional] |
from okta.models.device_access_policy_rule_condition import DeviceAccessPolicyRuleCondition
# TODO update the JSON string below
json = "{}"
# create an instance of DeviceAccessPolicyRuleCondition from a JSON string
device_access_policy_rule_condition_instance = DeviceAccessPolicyRuleCondition.from_json(json)
# print the JSON string representation of the object
print(DeviceAccessPolicyRuleCondition.to_json())
# convert the object into a dict
device_access_policy_rule_condition_dict = device_access_policy_rule_condition_instance.to_dict()
# create an instance of DeviceAccessPolicyRuleCondition from a dict
device_access_policy_rule_condition_from_dict = DeviceAccessPolicyRuleCondition.from_dict(device_access_policy_rule_condition_dict)