Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.13 KB

File metadata and controls

36 lines (27 loc) · 2.13 KB

WithdrawBankTransferResponseWithErrorMessages

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]
errors List[Error] [optional]

Example

from clientapi_barion.models.withdraw_bank_transfer_response_with_error_messages import WithdrawBankTransferResponseWithErrorMessages

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

# convert the object into a dict
withdraw_bank_transfer_response_with_error_messages_dict = withdraw_bank_transfer_response_with_error_messages_instance.to_dict()
# create an instance of WithdrawBankTransferResponseWithErrorMessages from a dict
withdraw_bank_transfer_response_with_error_messages_from_dict = WithdrawBankTransferResponseWithErrorMessages.from_dict(withdraw_bank_transfer_response_with_error_messages_dict)

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