Bank

Parent Previous Next

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

 

 

Examples

 

.NET VB

 

Dim bank() As eBizCharge.Bank

       bank = client.getBankList(token)

       MsgBox(bank.Length)

 

 

.NET C#

 

try

           {

               eBizCharge.Bank[] bank = client.getBankList(token);

               MessageBox.Show(string.Concat(bank.Length));

           }

           catch (Exception err)

           {

               MessageBox.Show(err.Message);

           }

: