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