Class: module:models/PaymentBankAccount

module:models/PaymentBankAccount()

new module:models/PaymentBankAccount()

Constructs a new PaymentBankAccount. Document representing a payment bank account.

Source:

Members

(inner) drivers_license_last_digits :String

The last 4 characters of the decrypted driver's license number of the bank account associated with this payment instrument.

Type:
  • String
Source:

(inner) drivers_license_state_code :String

The driver license state code.

Type:
  • String
Source:

(inner) holder :String

The holder of the bank account.

Type:
  • String
Source:

(inner) masked_drivers_license :String

The decrypted driver's license number of the bank account with all but the last 4 characters replaced with a '*' character.

Type:
  • String
Source:

(inner) masked_number :String

The bank account masked number.

Type:
  • String
Source:

(inner) number_last_digits :String

The last digits of the bank account number.

Type:
  • String
Source:

Methods

(static) constructFromObject(data, obj) → {module:models/PaymentBankAccount}

Constructs a PaymentBankAccount from a plain JavaScript object, optionally creating a new instance. Copies all relevant properties from data to obj if supplied or a new instance if not.

Parameters:
Name Type Description
data Object

The plain JavaScript object bearing properties of interest.

obj module:models/PaymentBankAccount

Optional instance to populate.

Source:
Returns:

The populated PaymentBankAccount instance.

Type
module:models/PaymentBankAccount