/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../index"; import * as Vellum from "../../api/index"; import * as core from "../../core"; import { ExecutionVellumValue } from "./ExecutionVellumValue"; import { WorkflowError } from "./WorkflowError"; import { WorkflowExecutionUsageResult } from "./WorkflowExecutionUsageResult"; import { WorkflowExecutionActual } from "./WorkflowExecutionActual"; import { WorkflowExecutionViewOnlineEvalMetricResult } from "./WorkflowExecutionViewOnlineEvalMetricResult"; import { VellumSpan } from "./VellumSpan"; export declare const WorkflowEventExecutionRead: core.serialization.ObjectSchema; export declare namespace WorkflowEventExecutionRead { interface Raw { span_id: string; start: string; end?: (string | null) | null; inputs: ExecutionVellumValue.Raw[]; outputs: ExecutionVellumValue.Raw[]; error?: (WorkflowError.Raw | null) | null; usage_results?: (WorkflowExecutionUsageResult.Raw[] | null) | null; parent_context?: (serializers.WorkflowDeploymentParentContext.Raw | null) | null; latest_actual?: (WorkflowExecutionActual.Raw | null) | null; metric_results: WorkflowExecutionViewOnlineEvalMetricResult.Raw[]; spans: VellumSpan.Raw[]; state?: (Record | null) | null; } }