/**
 * 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 { Ptsv2paymentsPaymentInformationCustomer } from './ptsv2payments-payment-information-customer';
import { Ptsv2paymentsPaymentInformationPaymentInstrument } from './ptsv2payments-payment-information-payment-instrument';
import { Ptsv2paymentsPaymentInformationTokenizedCard } from './ptsv2payments-payment-information-tokenized-card';
import { Ptsv2payoutsPaymentInformationCard } from './ptsv2payouts-payment-information-card';
import { Ptsv2payoutsPaymentInformationInstrumentIdentifier } from './ptsv2payouts-payment-information-instrument-identifier';
/**
 *
 * @export
 * @interface Ptsv2payoutsPaymentInformation
 */
export interface Ptsv2payoutsPaymentInformation {
    /**
     *
     * @type {Ptsv2payoutsPaymentInformationCard}
     * @memberof Ptsv2payoutsPaymentInformation
     */
    card?: Ptsv2payoutsPaymentInformationCard;
    /**
     *
     * @type {Ptsv2paymentsPaymentInformationCustomer}
     * @memberof Ptsv2payoutsPaymentInformation
     */
    customer?: Ptsv2paymentsPaymentInformationCustomer;
    /**
     *
     * @type {Ptsv2paymentsPaymentInformationPaymentInstrument}
     * @memberof Ptsv2payoutsPaymentInformation
     */
    paymentInstrument?: Ptsv2paymentsPaymentInformationPaymentInstrument;
    /**
     *
     * @type {Ptsv2payoutsPaymentInformationInstrumentIdentifier}
     * @memberof Ptsv2payoutsPaymentInformation
     */
    instrumentIdentifier?: Ptsv2payoutsPaymentInformationInstrumentIdentifier;
    /**
     *
     * @type {Ptsv2paymentsPaymentInformationTokenizedCard}
     * @memberof Ptsv2payoutsPaymentInformation
     */
    tokenizedCard?: Ptsv2paymentsPaymentInformationTokenizedCard;
}
