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.
| Name | Type | Description | Notes |
|---|---|---|---|
| network | PolicyNetworkCondition | [optional] | |
| people | PolicyPeopleCondition | [optional] |
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)