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