Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.72 KB

CreateWithdrawalResponse.md

File metadata and controls

38 lines (29 loc) · 1.72 KB

CreateWithdrawalResponse

CreateWithdrawalResponse response

Properties

Name Type Description Notes
amount str Amount to withdraw [optional]
created_at int Unix time the withdrawal was initiated, in milliseconds [optional]
currency str Withdrawal currency. [optional]
external_id str External ID has the value that was passed in when the Withdrawal request was posted. [optional]
fee str Withdrawal fee [optional]
id str [optional]
status str Status [optional]
transfer_id str Transfer ID is the identifier of the Withdrawal's transfer once it completes. [optional]
type str Type distinguishes between different withdrawal methods where more than one is supported for the given currency. [optional]

Example

from luno_openapi.models.create_withdrawal_response import CreateWithdrawalResponse

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

# convert the object into a dict
create_withdrawal_response_dict = create_withdrawal_response_instance.to_dict()
# create an instance of CreateWithdrawalResponse from a dict
create_withdrawal_response_from_dict = CreateWithdrawalResponse.from_dict(create_withdrawal_response_dict)

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