Files
Fulfillment-Frontend/src/client/models/CardProductSchema.ts

14 lines
420 B
TypeScript

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