Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

PasswordPolicyRuleActions

Properties

Name Type Description Notes
password_change PasswordPolicyRuleAction [optional]
self_service_password_reset SelfServicePasswordResetAction [optional]
self_service_unlock PasswordPolicyRuleAction [optional]

Example

from okta.models.password_policy_rule_actions import PasswordPolicyRuleActions

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

# convert the object into a dict
password_policy_rule_actions_dict = password_policy_rule_actions_instance.to_dict()
# create an instance of PasswordPolicyRuleActions from a dict
password_policy_rule_actions_from_dict = PasswordPolicyRuleActions.from_dict(password_policy_rule_actions_dict)

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