/** * 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 { VellumSpan } from "./VellumSpan"; export declare const WorkflowExecutionDetail: core.serialization.ObjectSchema; export declare namespace WorkflowExecutionDetail { interface Raw { span_id: string; parent_context?: (serializers.ParentContext.Raw | null) | null; start: string; end?: (string | null) | null; inputs: ExecutionVellumValue.Raw[]; outputs: ExecutionVellumValue.Raw[]; error?: (WorkflowError.Raw | null) | null; usage_results?: (WorkflowExecutionUsageResult.Raw[] | null) | null; spans: VellumSpan.Raw[]; state?: (Record | null) | null; } }