| Name | Type | Description | Notes |
|---|---|---|---|
| profile | SecurityQuestionUserFactorProfile | [optional] |
from okta.models.security_question_user_factor import SecurityQuestionUserFactor
# TODO update the JSON string below
json = "{}"
# create an instance of SecurityQuestionUserFactor from a JSON string
security_question_user_factor_instance = SecurityQuestionUserFactor.from_json(json)
# print the JSON string representation of the object
print(SecurityQuestionUserFactor.to_json())
# convert the object into a dict
security_question_user_factor_dict = security_question_user_factor_instance.to_dict()
# create an instance of SecurityQuestionUserFactor from a dict
security_question_user_factor_from_dict = SecurityQuestionUserFactor.from_dict(security_question_user_factor_dict)