/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; export interface WorkflowExecutionDetail { spanId: string; parentContext?: Vellum.ParentContext | null; start: Date; end?: Date | null; inputs: Vellum.ExecutionVellumValue[]; outputs: Vellum.ExecutionVellumValue[]; error?: Vellum.WorkflowError | null; usageResults?: Vellum.WorkflowExecutionUsageResult[] | null; spans: Vellum.VellumSpan[]; state?: Record | null; }