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