Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

UpdateCallbackHandlerRequest

Properties

Name Type Description Notes
callback_handler CallbackHandlerRequest [optional]

Example

from fireblocks.models.update_callback_handler_request import UpdateCallbackHandlerRequest

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

# convert the object into a dict
update_callback_handler_request_dict = update_callback_handler_request_instance.to_dict()
# create an instance of UpdateCallbackHandlerRequest from a dict
update_callback_handler_request_from_dict = UpdateCallbackHandlerRequest.from_dict(update_callback_handler_request_dict)

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