@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
50 lines (49 loc) • 2.62 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 { Ptsv2paymentsPaymentInformationBankAccount } from './ptsv2payments-payment-information-bank-account';
/**
*
* @export
* @interface Ptsv2paymentsPaymentInformationBank
*/
export interface Ptsv2paymentsPaymentInformationBank {
/**
*
* @type {Ptsv2paymentsPaymentInformationBankAccount}
* @memberof Ptsv2paymentsPaymentInformationBank
*/
account?: Ptsv2paymentsPaymentInformationBankAccount;
/**
* Bank routing number. This is also called the _transit number_. For details, see `ecp_rdfi` request 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 Ptsv2paymentsPaymentInformationBank
*/
routingNumber?: 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 Ptsv2paymentsPaymentInformationBank
*/
iban?: 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 Ptsv2paymentsPaymentInformationBank
*/
swiftCode?: string;
/**
* Bank code of the consumer's account
* @type {string}
* @memberof Ptsv2paymentsPaymentInformationBank
*/
code?: string;
}