Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

PlatformPolicyRuleCondition

Properties

Name Type Description Notes
exclude List[PlatformConditionEvaluatorPlatform] [optional]
include List[PlatformConditionEvaluatorPlatform] [optional]

Example

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)

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