new module:models/SimplePaymentFundingAccountRequest(account_holder_name, account_number)
This class subject to change without prior notice, Please dont use this class directly.
Constructs a newSimplePaymentFundingAccountRequest.
Parameters:
| Name | Type | Description |
|---|---|---|
account_holder_name |
String | The name as specified on the account. |
account_number |
String | The number or reference that a customer uses to identify the funding account. In case of Apple Pay, this is the device-specific account number of the card. |
Members
-
static, readonly AccountHolderTypeEnum :String
-
Allowed values for the
account_holder_typeproperty.Properties:
Name Type Description personalString value: "personal"
businessString value: "business"
-
static, readonly AccountSubtypeEnum :String
-
Allowed values for the
account_subtypeproperty.Properties:
Name Type Description savingsString value: "savings"
checkingString value: "checking"
money_marketString value: "money_market"
visa_creditString value: "visa_credit"
mastercard_creditString value: "mastercard_credit"
american_express_creditString value: "american_express_credit"
discover_creditString value: "discover_credit"
visa_debitString value: "visa_debit"
mastercard_debitString value: "mastercard_debit"
discover_debitString value: "discover_debit"
apple_payString value: "apple_pay"
-
inner aba_routing_number :String
-
The ABA/Routing number for the bank account.
-
inner account_holder_name :String
-
The name as specified on the account.
-
inner account_holder_type :module:models/SimplePaymentFundingAccountRequest.AccountHolderTypeEnum
-
The type of ownership for the funding account. This is applicable only in the case of bank accounts.
-
inner account_number :String
-
The number or reference that a customer uses to identify the funding account. In case of Apple Pay, this is the device-specific account number of the card.
-
inner account_subtype :module:models/SimplePaymentFundingAccountRequest.AccountSubtypeEnum
-
The sub type of the funding account. This is derived by EBPP in the case of card funding accounts. It needs to be passed when adding or editing a DDA/Bank/ApplePay account. For e.g., a savings account, a checking account.
-
inner address :module:models/FundingAccountAddress
-
-
inner card_cvv_number :String
-
This is never returned by EBPP. This needs to be passed to EBPP when adding or editing a card funding account.
-
inner custom_fields :Object.<String, String>
-
The additional information or meta-information that EBPP can accept, maintain and transmit back to the client. The custom fields need to be configured with EBPP before they can be accepted. EBPP would reject custom fields that are not pre-configured. Please contact <a href = "mailto: support@billerpayments.com">support@billerpayments.com for more information on configuring and using custom fields.
-
inner device_manufacturer_id :String
-
This is applicable only for Apple Pay transactions. Hex-encoded device manufacturer identifier.
-
inner display_text :String
-
UI representation of the account.
-
inner expiry_date :String
-
The expiry date for the card. This is to be in the format MM/YY.
-
inner nickname :String
-
The nickname by which a customer might want to identify the account.
Methods
-
static constructFromObject(data, obj) → {module:models/SimplePaymentFundingAccountRequest}
-
Constructs a
SimplePaymentFundingAccountRequestfrom a plain JavaScript object, optionally creating a new instance. Copies all relevant properties fromdatatoobjif supplied or a new instance if not.Parameters:
Name Type Description dataObject The plain JavaScript object bearing properties of interest.
objmodule:models/SimplePaymentFundingAccountRequest Optional instance to populate.
Returns:
module:models/SimplePaymentFundingAccountRequest -The populated
SimplePaymentFundingAccountRequestinstance.