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 usaepay.Bank bank = client.getBankList(token) MsgBox(bank.Length)
try { usaepay.Bank[] bank = client.getBankList(token); MessageBox.Show(string.Concat(bank.Length)); }
Version | Change |
---|---|
1.2 | Added in 1.2 release |