Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.34 KB

CallbackResponseOK.md

File metadata and controls

29 lines (22 loc) · 1.34 KB

CallbackResponseOK

Properties

Name Type Description Notes
redirect_uri str URL to which vault will redirect [optional]
response_code str Code which will be used along with transactionId to retrieve data [optional]
message str A message to vault that flow is updated successfully

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]