/**
 * 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 { Ptsv2paymentsidClientReferenceInformation } from './ptsv2paymentsid-client-reference-information';
import { Ptsv2paymentsidMerchantInformation } from './ptsv2paymentsid-merchant-information';
import { Ptsv2paymentsidOrderInformation } from './ptsv2paymentsid-order-information';
import { Ptsv2paymentsidProcessingInformation } from './ptsv2paymentsid-processing-information';
import { Ptsv2paymentsidTravelInformation } from './ptsv2paymentsid-travel-information';
/**
 *
 * @export
 * @interface PaymentsIdBody
 */
export interface PaymentsIdBody {
    /**
     *
     * @type {Ptsv2paymentsidClientReferenceInformation}
     * @memberof PaymentsIdBody
     */
    clientReferenceInformation?: Ptsv2paymentsidClientReferenceInformation;
    /**
     *
     * @type {Ptsv2paymentsidProcessingInformation}
     * @memberof PaymentsIdBody
     */
    processingInformation?: Ptsv2paymentsidProcessingInformation;
    /**
     *
     * @type {Ptsv2paymentsidOrderInformation}
     * @memberof PaymentsIdBody
     */
    orderInformation?: Ptsv2paymentsidOrderInformation;
    /**
     *
     * @type {Ptsv2paymentsidMerchantInformation}
     * @memberof PaymentsIdBody
     */
    merchantInformation?: Ptsv2paymentsidMerchantInformation;
    /**
     *
     * @type {Ptsv2paymentsidTravelInformation}
     * @memberof PaymentsIdBody
     */
    travelInformation?: Ptsv2paymentsidTravelInformation;
}
