/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * @example * { * name: "Runbook For Vendor X" * } */ export interface UpdateRunbookRequest { /** The name of the Runbook. */ name?: string; /** The status of the Runbook. */ status?: Flatfile.RunbookStatus; /** The configuration of the Runbook. */ config?: Flatfile.RunbookConfig; }