/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * The input for an image variable in a Workflow. */ export interface WorkflowRequestImageInputRequest { /** The variable's name, as defined in the Workflow. */ name: string; type: "IMAGE"; value: Vellum.VellumImageRequest; }