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)