Files
Fulfillment-Frontend/src/client/models/DealProductSchema.ts
2024-11-07 21:39:02 +04:00

14 lines
420 B
TypeScript

/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { DealProductServiceSchema } from './DealProductServiceSchema';
import type { ProductSchema } from './ProductSchema';
export type DealProductSchema = {
product: ProductSchema;
services: Array<DealProductServiceSchema>;
quantity: number;
comment?: string;
};