import { ReductionContextEnum } from './ReductionContextEnum';
import { Price } from './Price';
import { ReductionTypeEnum } from './ReductionTypeEnum';
/** Order detail reduction */
export interface Reduction {
    /** In which context the reduction is applied */
    context: ReductionContextEnum;
    /** Promotion description */
    description: string;
    /** Reduction price applied with this promotion */
    price: Price;
    /** Reduction description */
    reductionDescription: string;
    /** Reduction effect, price modification */
    type: ReductionTypeEnum;
    /** The reduction value */
    value: Price;
}
//# sourceMappingURL=Reduction.d.ts.map