/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Update a guide * * @example * { * description: "Updated getting started guide", * title: "Data import made easy", * slug: "getting-started", * environmentId: "commons.EnvironmentId", * metadata: { * "category": "onboarding" * } * } */ export interface GuideUpdateRequest { description?: string; title?: string; metadata?: Record; slug?: string; versions?: Flatfile.GuideVersionResource[]; blocks?: (Record | undefined)[]; environmentId?: string; }