Contains information about a bank or financial institution that can process direct payments.
This object describes a bank or financial institution that supports direct payment processing. See getBankList for more information about retrieving the list of financial institutions that support direct payments.
Type |
Name |
Description |
string |
Code |
ID of bank, used when processing an Secure Vault Payment |
string |
Name |
Name of bank or financial institution |
Dim bank() As eBizCharge.Bank
bank = client.getBankList(token)
MsgBox(bank.Length)
try
{
eBizCharge.Bank[] bank = client.getBankList(token);
MessageBox.Show(string.Concat(bank.Length));
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}