Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

PasswordPolicyRule

Properties

Name Type Description Notes
actions PasswordPolicyRuleActions [optional]
conditions PasswordPolicyRuleConditions [optional]

Example

from okta.models.password_policy_rule import PasswordPolicyRule

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

# convert the object into a dict
password_policy_rule_dict = password_policy_rule_instance.to_dict()
# create an instance of PasswordPolicyRule from a dict
password_policy_rule_from_dict = PasswordPolicyRule.from_dict(password_policy_rule_dict)

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