/**
 * 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 { Ptsv2paymentreferencesPaymentInformationBankAccount } from './ptsv2paymentreferences-payment-information-bank-account';
/**
 *
 * @export
 * @interface Ptsv2paymentreferencesPaymentInformationBank
 */
export interface Ptsv2paymentreferencesPaymentInformationBank {
    /**
     * 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 Ptsv2paymentreferencesPaymentInformationBank
     */
    swiftCode?: string;
    /**
     *
     * @type {Ptsv2paymentreferencesPaymentInformationBankAccount}
     * @memberof Ptsv2paymentreferencesPaymentInformationBank
     */
    account?: Ptsv2paymentreferencesPaymentInformationBankAccount;
}
