Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

File metadata and controls

32 lines (23 loc) · 1.25 KB

DevicePolicyRuleCondition

Properties

Name Type Description Notes
migrated bool [optional]
platform DevicePolicyRuleConditionPlatform [optional]
rooted bool [optional]
trust_level DevicePolicyTrustLevel [optional]

Example

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)

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