Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

VerifyUserFactorResponse

Properties

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]

Example

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)

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