/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../../../../index"; /** * @example * { * inputs: [{ * type: "STRING", * name: "x" * }, { * type: "STRING", * name: "x" * }] * } */ export interface UpsertSandboxScenarioRequest { label?: string; /** The inputs for the scenario */ inputs: Vellum.NamedScenarioInputRequest[]; /** The id of the scenario to update. If none is provided, an id will be generated and a new scenario will be appended. */ scenarioId?: string; }