| Name | Type | Description | Notes |
|---|---|---|---|
| supported_mdm_frameworks | List[DevicePolicyMDMFramework] | [optional] | |
| types | List[DevicePolicyPlatformType] | [optional] |
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)