@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
63 lines (62 loc) • 4.39 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.
*/
import { TssV2TransactionsGet200ResponsePaymentInformationBankAccount } from './tss-v2-transactions-get200-response-payment-information-bank-account';
import { TssV2TransactionsGet200ResponsePaymentInformationBankMandate } from './tss-v2-transactions-get200-response-payment-information-bank-mandate';
/**
*
* @export
* @interface TssV2TransactionsGet200ResponsePaymentInformationBank
*/
export interface TssV2TransactionsGet200ResponsePaymentInformationBank {
/**
* Bank routing number. This is also called the transit number. For details, see `ecp_rdfi` field description in the [Electronic Check Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/EChecks_SCMP_API/html/)
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationBank
*/
routingNumber?: string;
/**
* Code used to identify the branch of the customer's bank. Required for some countries if you do not or are not allowed to provide the IBAN. Use this field only when scoring a direct debit transaction. For all possible values, see the `branch_code` 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 TssV2TransactionsGet200ResponsePaymentInformationBank
*/
branchCode?: string;
/**
* Bank's SWIFT code. You can use this field only when scoring a direct debit transaction. Required only for crossborder transactions. For all possible values, see the `bank_swiftcode` 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 TssV2TransactionsGet200ResponsePaymentInformationBank
*/
swiftCode?: string;
/**
* Country-specific code used to identify the customer's bank. Required for some countries if you do not or are not allowed to provide the IBAN instead. You can use this field only when scoring a direct debit transaction. For all possible values, see the `bank_code` 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 TssV2TransactionsGet200ResponsePaymentInformationBank
*/
bankCode?: string;
/**
* International Bank Account Number (IBAN) for the bank account. For some countries you can provide this number instead of the traditional bank account information. You can use this field only when scoring a direct debit transaction. For all possible values, see the `bank_iban` 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 TssV2TransactionsGet200ResponsePaymentInformationBank
*/
iban?: string;
/**
*
* @type {TssV2TransactionsGet200ResponsePaymentInformationBankAccount}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationBank
*/
account?: TssV2TransactionsGet200ResponsePaymentInformationBankAccount;
/**
*
* @type {TssV2TransactionsGet200ResponsePaymentInformationBankMandate}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationBank
*/
mandate?: TssV2TransactionsGet200ResponsePaymentInformationBankMandate;
}