Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.7 KB

File metadata and controls

34 lines (25 loc) · 1.7 KB

WithdrawBankTransferRequest

Properties

Name Type Description Notes
currency str The currency of the payment. Must be supplied in ISO 4217 format. This affects all transactions included in the payment; it is not possible to define multiple transactions in different currencies.
amount float Total amount to withdraw, excluding fees.
comment str Comment associated with the bank transfer. [optional]
bank_account BankAccountDetails Details of the recipient's bank account.
bank BankDetails Required for foreign withdrawals. Details of the recipient's bank.
recipient RecipientDetails Details of the recipient.

Example

from clientapi_barion.models.withdraw_bank_transfer_request import WithdrawBankTransferRequest

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

# convert the object into a dict
withdraw_bank_transfer_request_dict = withdraw_bank_transfer_request_instance.to_dict()
# create an instance of WithdrawBankTransferRequest from a dict
withdraw_bank_transfer_request_from_dict = WithdrawBankTransferRequest.from_dict(withdraw_bank_transfer_request_dict)

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