/** * This file was auto-generated by Fern from our API Definition. */ /** * A string output from a Workflow execution. */ export interface WorkflowOutputString { id: string; /** The output's name, as defined in the workflow */ name: string; type: "STRING"; value?: string | null; }