| Name | Type | Description | Notes |
|---|---|---|---|
| expires_at | datetime | [optional] [readonly] | |
| factor_result | VerifyUserFactorResult | [optional] | |
| factor_result_message | str | [optional] | |
| embedded | Dict[str, object] | [optional] [readonly] | |
| links | VerifyUserFactorResponseLinks | [optional] |
from okta.models.verify_user_factor_response import VerifyUserFactorResponse
# TODO update the JSON string below
json = "{}"
# create an instance of VerifyUserFactorResponse from a JSON string
verify_user_factor_response_instance = VerifyUserFactorResponse.from_json(json)
# print the JSON string representation of the object
print(VerifyUserFactorResponse.to_json())
# convert the object into a dict
verify_user_factor_response_dict = verify_user_factor_response_instance.to_dict()
# create an instance of VerifyUserFactorResponse from a dict
verify_user_factor_response_from_dict = VerifyUserFactorResponse.from_dict(verify_user_factor_response_dict)