Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

UpdateCallbackHandlerResponse.md

File metadata and controls

30 lines (21 loc) · 1.18 KB

UpdateCallbackHandlerResponse

Properties

Name Type Description Notes
id str The unique identifier of the API key
callback_handler CallbackHandlerRequest [optional]

Example

from fireblocks.models.update_callback_handler_response import UpdateCallbackHandlerResponse

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

# convert the object into a dict
update_callback_handler_response_dict = update_callback_handler_response_instance.to_dict()
# create an instance of UpdateCallbackHandlerResponse from a dict
update_callback_handler_response_from_dict = UpdateCallbackHandlerResponse.from_dict(update_callback_handler_response_dict)

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