/** * Generated by orval v8.8.0 🍺 * Do not edit manually. * OpenAPI spec version: 0.0.0 */ import type { PostContent } from "./postContent"; import type { Tags } from "./tags"; export interface PatchedPost { readonly id?: number; content?: string; readonly created_at?: Date; readonly updated_at?: Date; readonly author?: number; /** @nullable */ hub?: number | null; /** @nullable */ reply_to?: number | null; readonly tags?: readonly Tags[]; readonly contents?: readonly PostContent[]; }