UNPKG

@paciolan/cybersource-sdk

Version:
44 lines (43 loc) 1.61 kB
/** * 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 { Ptsv2billingagreementsPaymentInformationBankAccount } from './ptsv2billingagreements-payment-information-bank-account'; /** * * @export * @interface Ptsv2billingagreementsPaymentInformationBank */ export interface Ptsv2billingagreementsPaymentInformationBank { /** * * @type {Ptsv2billingagreementsPaymentInformationBankAccount} * @memberof Ptsv2billingagreementsPaymentInformationBank */ account?: Ptsv2billingagreementsPaymentInformationBankAccount; /** * International Bank Account Number (IBAN). #### SEPA Required for mandates services * @type {string} * @memberof Ptsv2billingagreementsPaymentInformationBank */ iban?: string; /** * Bank's SWIFT code. You can use this field only when scoring a direct debit transaction. #### BACS Required for mandates services * @type {string} * @memberof Ptsv2billingagreementsPaymentInformationBank */ swiftCode?: string; /** * The scheme that sets the rules for the direct debit process. Possible values: - SEPA - BACS #### SEPA/BACS Required for mandates services * @type {string} * @memberof Ptsv2billingagreementsPaymentInformationBank */ scheme?: string; }