| Name | Type | Description | Notes |
|---|---|---|---|
| var_self | HrefObjectSelfLink | [optional] | |
| poll | HrefObject | [optional] | |
| cancel | HrefObject | [optional] |
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)