/**
 * 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 { Ptsv2paymentsidcapturesPaymentInformationCard } from './ptsv2paymentsidcaptures-payment-information-card';
import { Ptsv2paymentsidcapturesPaymentInformationPaymentType } from './ptsv2paymentsidcaptures-payment-information-payment-type';
/**
 *
 * @export
 * @interface Ptsv2paymentsidcapturesPaymentInformation
 */
export interface Ptsv2paymentsidcapturesPaymentInformation {
    /**
     *
     * @type {Ptsv2paymentsPaymentInformationCustomer}
     * @memberof Ptsv2paymentsidcapturesPaymentInformation
     */
    customer?: Ptsv2paymentsPaymentInformationCustomer;
    /**
     *
     * @type {Ptsv2paymentsidcapturesPaymentInformationCard}
     * @memberof Ptsv2paymentsidcapturesPaymentInformation
     */
    card?: Ptsv2paymentsidcapturesPaymentInformationCard;
    /**
     *
     * @type {Ptsv2paymentsidcapturesPaymentInformationPaymentType}
     * @memberof Ptsv2paymentsidcapturesPaymentInformation
     */
    paymentType?: Ptsv2paymentsidcapturesPaymentInformationPaymentType;
}
