18 lines
412 B
TypeScript
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;
|
|
}
|