You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
fromclientapi_barion.models.withdraw_bank_transfer_responseimportWithdrawBankTransferResponse# TODO update the JSON string belowjson="{}"# create an instance of WithdrawBankTransferResponse from a JSON stringwithdraw_bank_transfer_response_instance=WithdrawBankTransferResponse.from_json(json)
# print the JSON string representation of the objectprint(WithdrawBankTransferResponse.to_json())
# convert the object into a dictwithdraw_bank_transfer_response_dict=withdraw_bank_transfer_response_instance.to_dict()
# create an instance of WithdrawBankTransferResponse from a dictwithdraw_bank_transfer_response_from_dict=WithdrawBankTransferResponse.from_dict(withdraw_bank_transfer_response_dict)