Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

RecoveryQuestionCredential

Properties

Name Type Description Notes
answer str [optional]
question str [optional]

Example

from okta.models.recovery_question_credential import RecoveryQuestionCredential

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

# convert the object into a dict
recovery_question_credential_dict = recovery_question_credential_instance.to_dict()
# create an instance of RecoveryQuestionCredential from a dict
recovery_question_credential_from_dict = RecoveryQuestionCredential.from_dict(recovery_question_credential_dict)

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