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

PasswordPolicyRecoveryQuestionProperties

Properties

Name Type Description Notes
complexity PasswordPolicyRecoveryQuestionComplexity [optional]

Example

from okta.models.password_policy_recovery_question_properties import PasswordPolicyRecoveryQuestionProperties

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

# convert the object into a dict
password_policy_recovery_question_properties_dict = password_policy_recovery_question_properties_instance.to_dict()
# create an instance of PasswordPolicyRecoveryQuestionProperties from a dict
password_policy_recovery_question_properties_from_dict = PasswordPolicyRecoveryQuestionProperties.from_dict(password_policy_recovery_question_properties_dict)

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