Specifies a particular level of risk to match on
| Name | Type | Description | Notes |
|---|---|---|---|
| level | str | The level to match |
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)