| Name | Type | Description | Notes |
|---|---|---|---|
| exclude | List[PlatformConditionEvaluatorPlatform] | [optional] | |
| include | List[PlatformConditionEvaluatorPlatform] | [optional] |
from okta.models.platform_policy_rule_condition import PlatformPolicyRuleCondition
# TODO update the JSON string below
json = "{}"
# create an instance of PlatformPolicyRuleCondition from a JSON string
platform_policy_rule_condition_instance = PlatformPolicyRuleCondition.from_json(json)
# print the JSON string representation of the object
print(PlatformPolicyRuleCondition.to_json())
# convert the object into a dict
platform_policy_rule_condition_dict = platform_policy_rule_condition_instance.to_dict()
# create an instance of PlatformPolicyRuleCondition from a dict
platform_policy_rule_condition_from_dict = PlatformPolicyRuleCondition.from_dict(platform_policy_rule_condition_dict)