/**
 * 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 { TmsPaymentInstrumentProcessingInfoBankTransferOptions } from './tms-payment-instrument-processing-info-bank-transfer-options';
/**
 *
 * @export
 * @interface TmsPaymentInstrumentProcessingInfo
 */
export interface TmsPaymentInstrumentProcessingInfo {
    /**
     * Flag that indicates that this is a payment for a bill or for an existing contractual loan. For processor-specific details, see the `bill_payment` field description in [Credit Card Services Using the SCMP API.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/)  Possible Values: - `true`: Bill payment or loan payment. - `false` (default): Not a bill payment or loan payment.
     * @type {boolean}
     * @memberof TmsPaymentInstrumentProcessingInfo
     */
    billPaymentProgramEnabled?: boolean;
    /**
     *
     * @type {TmsPaymentInstrumentProcessingInfoBankTransferOptions}
     * @memberof TmsPaymentInstrumentProcessingInfo
     */
    bankTransferOptions?: TmsPaymentInstrumentProcessingInfoBankTransferOptions;
}
