Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.4 KB

File metadata and controls

31 lines (22 loc) · 1.4 KB

PasswordPolicyRuleConditions

Specifies conditions that must be met during policy evaluation to apply the rule. All policy conditions and conditions for at least one rule must be met to apply the settings specified in the policy and the associated rule.

Properties

Name Type Description Notes
network PolicyNetworkCondition [optional]
people PolicyPeopleCondition [optional]

Example

from okta.models.password_policy_rule_conditions import PasswordPolicyRuleConditions

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

# convert the object into a dict
password_policy_rule_conditions_dict = password_policy_rule_conditions_instance.to_dict()
# create an instance of PasswordPolicyRuleConditions from a dict
password_policy_rule_conditions_from_dict = PasswordPolicyRuleConditions.from_dict(password_policy_rule_conditions_dict)

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