/** * Generated by orval v7.17.0 🍺 * Do not edit manually. * OpenAPI spec version: 0.0.0 */ import type { ProductMini } from "./productMini"; export interface OrderItemRead { readonly id: number; readonly product: ProductMini; readonly quantity: number; }