Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

VerifyUserFactorResponseLinks

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
poll HrefObject [optional]
cancel HrefObject [optional]

Example

from okta.models.verify_user_factor_response_links import VerifyUserFactorResponseLinks

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

# convert the object into a dict
verify_user_factor_response_links_dict = verify_user_factor_response_links_instance.to_dict()
# create an instance of VerifyUserFactorResponseLinks from a dict
verify_user_factor_response_links_from_dict = VerifyUserFactorResponseLinks.from_dict(verify_user_factor_response_links_dict)

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