Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 910 Bytes

File metadata and controls

30 lines (21 loc) · 910 Bytes

SendResponse

Properties

Name Type Description Notes
success bool [optional]
withdrawal_id str [optional]

Example

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)

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