Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.29 KB

File metadata and controls

29 lines (20 loc) · 1.29 KB

PasswordPolicyRecoveryQuestionComplexity

Properties

Name Type Description Notes
min_length int Minimum length of the password recovery question answer [optional] [readonly] [default to 4]

Example

from okta.models.password_policy_recovery_question_complexity import PasswordPolicyRecoveryQuestionComplexity

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

# convert the object into a dict
password_policy_recovery_question_complexity_dict = password_policy_recovery_question_complexity_instance.to_dict()
# create an instance of PasswordPolicyRecoveryQuestionComplexity from a dict
password_policy_recovery_question_complexity_from_dict = PasswordPolicyRecoveryQuestionComplexity.from_dict(password_policy_recovery_question_complexity_dict)

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