Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.84 KB

WithdrawBankTransferResponse.md

File metadata and controls

35 lines (26 loc) · 1.84 KB

WithdrawBankTransferResponse

Properties

Name Type Description Notes
transaction_id str The unique identifier of the bank transfer, generated by the Barion system. [optional]
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. [optional]
amount float The total amount transferred. [optional]
comment str The comment associated with the bank transfer. [optional]
bank_account BankAccountDetails Details of the recipient's bank account. [optional]
bank BankDetails Details of the recipient's bank. [optional]
recipient RecipientDetails Details of the recipient. [optional]

Example

from clientapi_barion.models.withdraw_bank_transfer_response import WithdrawBankTransferResponse

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

# convert the object into a dict
withdraw_bank_transfer_response_dict = withdraw_bank_transfer_response_instance.to_dict()
# create an instance of WithdrawBankTransferResponse from a dict
withdraw_bank_transfer_response_from_dict = WithdrawBankTransferResponse.from_dict(withdraw_bank_transfer_response_dict)

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