Files
vontor-cz/frontend/src/api/generated/public/models/patchedCart.ts
2026-04-20 00:04:15 +02:00

18 lines
412 B
TypeScript

/**
* Generated by orval v8.8.0 🍺
* Do not edit manually.
* OpenAPI spec version: 0.0.0
*/
import type { CartItem } from "./cartItem";
export interface PatchedCart {
readonly id?: number;
/** @nullable */
readonly user?: number | null;
readonly items?: readonly CartItem[];
readonly total?: string;
readonly items_count?: string;
readonly created_at?: Date;
readonly updated_at?: Date;
}