Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

RiskScorePolicyRuleCondition

Specifies a particular level of risk to match on

Properties

Name Type Description Notes
level str The level to match

Example

from okta.models.risk_score_policy_rule_condition import RiskScorePolicyRuleCondition

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

# convert the object into a dict
risk_score_policy_rule_condition_dict = risk_score_policy_rule_condition_instance.to_dict()
# create an instance of RiskScorePolicyRuleCondition from a dict
risk_score_policy_rule_condition_from_dict = RiskScorePolicyRuleCondition.from_dict(risk_score_policy_rule_condition_dict)

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