Bank
Contains information about a bank or financial institution that can process direct payments.
Description
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.
Properties
| Type | Name | Description |
|---|---|---|
| string | Code | ID of bank, used when processing an Secure Vault Payment |
| string | Name | Name of bank or financial institution |
Places Used
Examples
.NET VB
Dim bank() As usaepay.Bank
bank = client.getBankList(token)
MsgBox(bank.Length)
.NET C
try
{
usaepay.Bank[] bank = client.getBankList(token);
MessageBox.Show(string.Concat(bank.Length));
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}
Change History
| Version | Change |
|---|---|
| 1.2 | Added in 1.2 release |