@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
61 lines (60 loc) • 3.16 kB
TypeScript
/**
* CyberSource Merged Spec
* All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
*
* OpenAPI spec version: 0.0.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
*
* @export
* @interface TssV2TransactionsGet200ResponsePaymentInformationBankAccount
*/
export interface TssV2TransactionsGet200ResponsePaymentInformationBankAccount {
/**
* Last four digits of the customer's payment account number.
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationBankAccount
*/
suffix?: string;
/**
* Bank Identification Number (BIN). This is the initial four to six numbers on a credit card account number.
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationBankAccount
*/
prefix?: string;
/**
* Check number. Chase Paymentech Solutions - Optional. CyberSource ACH Service - Not used. RBS WorldPay Atlanta - Optional on debits. Required on credits. TeleCheck - Strongly recommended on debit requests. Optional on credits.
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationBankAccount
*/
checkNumber?: string;
/**
* Account type. Possible values: - **C**: Checking. - **G**: General ledger. This value is supported only on Wells Fargo ACH. - **S**: Savings (U.S. dollars only). - **X**: Corporate checking (U.S. dollars only).
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationBankAccount
*/
type?: string;
/**
* Name used on the bank account. You can use this field only when scoring a direct debit transaction
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationBankAccount
*/
name?: string;
/**
* Code used to validate the customer's account number. Required for some countries if you do not or are not allowed to provide the IBAN instead. You may use this field only when scoring a direct debit transaction. For all possible values, see the `bank_check_digit` field description in the _Decision Manager Using the SCMP API Developer Guide_ on the [CyberSource Business Center.](https://ebc2.cybersource.com/ebc2/) Click **Decision Manager** > **Documentation** > **Guides** > _Decision Manager Using the SCMP API Developer Guide_ (PDF link).
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationBankAccount
*/
checkDigit?: string;
/**
* Identifier for the bank that provided the customer's encoded account number. To obtain the bank identifier, contact your processor. For details, see `account_encoder_id` request-level field description in [Credit Card Services Using the SCMP API.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/)
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationBankAccount
*/
encoderId?: string;
}