Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.29 KB

File metadata and controls

30 lines (21 loc) · 1.29 KB

DevicePolicyRuleConditionPlatform

Properties

Name Type Description Notes
supported_mdm_frameworks List[DevicePolicyMDMFramework] [optional]
types List[DevicePolicyPlatformType] [optional]

Example

from okta.models.device_policy_rule_condition_platform import DevicePolicyRuleConditionPlatform

# TODO update the JSON string below
json = "{}"
# create an instance of DevicePolicyRuleConditionPlatform from a JSON string
device_policy_rule_condition_platform_instance = DevicePolicyRuleConditionPlatform.from_json(json)
# print the JSON string representation of the object
print(DevicePolicyRuleConditionPlatform.to_json())

# convert the object into a dict
device_policy_rule_condition_platform_dict = device_policy_rule_condition_platform_instance.to_dict()
# create an instance of DevicePolicyRuleConditionPlatform from a dict
device_policy_rule_condition_platform_from_dict = DevicePolicyRuleConditionPlatform.from_dict(device_policy_rule_condition_platform_dict)

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