import { OrderActionEnum } from './OrderActionEnum';
import { OrderConfiguration } from './OrderConfiguration';
import { OrderPlan } from './OrderPlan';
import { OrderDetailTypeEnum } from './OrderDetailTypeEnum';
/** Order data for this Detail */
export interface Order {
    /** The meaning of this order detail */
    action?: OrderActionEnum;
    /** Configurations chosen during the order */
    configurations: OrderConfiguration[];
    /** Plan from /order/cart */
    plan: OrderPlan;
    /** Type of the detail to match with values inside the catalog */
    type?: OrderDetailTypeEnum;
}
//# sourceMappingURL=Order.d.ts.map