Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

CallbackHandlerRequest.md

File metadata and controls

31 lines (22 loc) · 1.14 KB

CallbackHandlerRequest

Properties

Name Type Description Notes
url str The callback handler's URL
public_key str The callback handler's public key [optional]
cert str The callback handler's certificate [optional]

Example

from fireblocks.models.callback_handler_request import CallbackHandlerRequest

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

# convert the object into a dict
callback_handler_request_dict = callback_handler_request_instance.to_dict()
# create an instance of CallbackHandlerRequest from a dict
callback_handler_request_from_dict = CallbackHandlerRequest.from_dict(callback_handler_request_dict)

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