/**
 * 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 { Ptsv2paymentsOrderInformationLineItems } from './ptsv2payments-order-information-line-items';
import { Ptsv2paymentsidcapturesOrderInformationAmountDetails } from './ptsv2paymentsidcaptures-order-information-amount-details';
import { Ptsv2paymentsidcapturesOrderInformationBillTo } from './ptsv2paymentsidcaptures-order-information-bill-to';
import { Ptsv2paymentsidcapturesOrderInformationInvoiceDetails } from './ptsv2paymentsidcaptures-order-information-invoice-details';
import { Ptsv2paymentsidcapturesOrderInformationShipTo } from './ptsv2paymentsidcaptures-order-information-ship-to';
import { Ptsv2paymentsidcapturesOrderInformationShippingDetails } from './ptsv2paymentsidcaptures-order-information-shipping-details';
/**
 *
 * @export
 * @interface Ptsv2paymentsidcapturesOrderInformation
 */
export interface Ptsv2paymentsidcapturesOrderInformation {
    /**
     *
     * @type {Ptsv2paymentsidcapturesOrderInformationAmountDetails}
     * @memberof Ptsv2paymentsidcapturesOrderInformation
     */
    amountDetails?: Ptsv2paymentsidcapturesOrderInformationAmountDetails;
    /**
     *
     * @type {Ptsv2paymentsidcapturesOrderInformationBillTo}
     * @memberof Ptsv2paymentsidcapturesOrderInformation
     */
    billTo?: Ptsv2paymentsidcapturesOrderInformationBillTo;
    /**
     *
     * @type {Ptsv2paymentsidcapturesOrderInformationShipTo}
     * @memberof Ptsv2paymentsidcapturesOrderInformation
     */
    shipTo?: Ptsv2paymentsidcapturesOrderInformationShipTo;
    /**
     *
     * @type {Array<Ptsv2paymentsOrderInformationLineItems>}
     * @memberof Ptsv2paymentsidcapturesOrderInformation
     */
    lineItems?: Array<Ptsv2paymentsOrderInformationLineItems>;
    /**
     *
     * @type {Ptsv2paymentsidcapturesOrderInformationInvoiceDetails}
     * @memberof Ptsv2paymentsidcapturesOrderInformation
     */
    invoiceDetails?: Ptsv2paymentsidcapturesOrderInformationInvoiceDetails;
    /**
     *
     * @type {Ptsv2paymentsidcapturesOrderInformationShippingDetails}
     * @memberof Ptsv2paymentsidcapturesOrderInformation
     */
    shippingDetails?: Ptsv2paymentsidcapturesOrderInformationShippingDetails;
}
