/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * @example * { * accountId: "us_acc_YOUR_ID", * appId: "us_app_YOUR_ID", * environmentId: "us_env_YOUR_ID", * spaceId: "us_sp_YOUR_ID", * name: "Runbook For Vendor X", * config: { * sourceSheetIds: ["us_sh_YOUR_ID"], * destinationSheetIds: ["us_sh_YOUR_ID"] * }, * status: Flatfile.RunbookStatus.Created, * type: Flatfile.RunbookType.Preprocessing * } */ export interface CreateRunbookRequest { accountId: Flatfile.AccountId; appId: Flatfile.AppId; environmentId: Flatfile.EnvironmentId; spaceId: Flatfile.SpaceId; /** The name of the Runbook. */ name: string; /** The configuration of the Runbook. */ config: Flatfile.RunbookConfig; /** The status of the Runbook. */ status: Flatfile.RunbookStatus; /** The type of the Runbook. */ type: Flatfile.RunbookType; }