Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.44 KB

File metadata and controls

34 lines (25 loc) · 1.44 KB

UserFactorVerifyResponse

Properties

Name Type Description Notes
expires_at datetime Timestamp when the verification expires [optional] [readonly]
factor_message str Optional display message for factor verification [optional] [readonly]
factor_result UserFactorVerifyResult [optional]
profile Dict[str, object] [optional] [readonly]
embedded Dict[str, Optional[object]] [optional]
links UserFactorLinks [optional]

Example

from okta.models.user_factor_verify_response import UserFactorVerifyResponse

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

# convert the object into a dict
user_factor_verify_response_dict = user_factor_verify_response_instance.to_dict()
# create an instance of UserFactorVerifyResponse from a dict
user_factor_verify_response_from_dict = UserFactorVerifyResponse.from_dict(user_factor_verify_response_dict)

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