Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.69 KB

CallbackResponseOK.md

File metadata and controls

29 lines (22 loc) · 1.69 KB

CallbackResponseOK

Properties

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.

Example

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]