| Name | Type | Description | Notes |
|---|---|---|---|
| success | bool | [optional] | |
| withdrawal_id | str | [optional] |
from luno_openapi.models.send_response import SendResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SendResponse from a JSON string
send_response_instance = SendResponse.from_json(json)
# print the JSON string representation of the object
print(SendResponse.to_json())
# convert the object into a dict
send_response_dict = send_response_instance.to_dict()
# create an instance of SendResponse from a dict
send_response_from_dict = SendResponse.from_dict(send_response_dict)