/**
 * 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 { Upv1capturecontextsOrderInformationAmountDetails } from './upv1capturecontexts-order-information-amount-details';
import { Upv1capturecontextsOrderInformationBillTo } from './upv1capturecontexts-order-information-bill-to';
import { Upv1capturecontextsOrderInformationShipTo } from './upv1capturecontexts-order-information-ship-to';
/**
 *
 * @export
 * @interface Upv1capturecontextsOrderInformation
 */
export interface Upv1capturecontextsOrderInformation {
    /**
     *
     * @type {Upv1capturecontextsOrderInformationAmountDetails}
     * @memberof Upv1capturecontextsOrderInformation
     */
    amountDetails?: Upv1capturecontextsOrderInformationAmountDetails;
    /**
     *
     * @type {Upv1capturecontextsOrderInformationBillTo}
     * @memberof Upv1capturecontextsOrderInformation
     */
    billTo?: Upv1capturecontextsOrderInformationBillTo;
    /**
     *
     * @type {Upv1capturecontextsOrderInformationShipTo}
     * @memberof Upv1capturecontextsOrderInformation
     */
    shipTo?: Upv1capturecontextsOrderInformationShipTo;
}
