Name |
Type |
Description |
Notes |
redirect_uri |
str |
The URL to which Affinidi Vault will redirect the user. |
[optional] |
response_code |
str |
A unique identifier to fetch the callback response data. Send this value together with the transactionId to successfully fetch the data. |
[optional] |
message |
str |
A message to the Affinidi Vault indicating that the update was successful. |
|
from affinidi_tdk_iota_client.models.callback_response_ok import CallbackResponseOK
# TODO update the JSON string below
json = "{}"
# create an instance of CallbackResponseOK from a JSON string
callback_response_ok_instance = CallbackResponseOK.from_json(json)
# print the JSON string representation of the object
print CallbackResponseOK.to_json()
# convert the object into a dict
callback_response_ok_dict = callback_response_ok_instance.to_dict()
# create an instance of CallbackResponseOK from a dict
callback_response_ok_from_dict = CallbackResponseOK.from_dict(callback_response_ok_dict)
[Back to Model list] [Back to API list] [Back to README]