react-spa-template/src/lib/api/merchant/models/bundleDiscountOfferDto.ts
2025-04-19 19:31:46 +02:00

13 lines
363 B
TypeScript

/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { discountType } from './discountType';
export type bundleDiscountOfferDto = {
readonly type?: 'bundle_discount' | null;
productIds: Array<string> | null;
discountType: discountType;
value: number;
};