/** * 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 { WorkflowNodeResultData } from "./WorkflowNodeResultData"; import { NodeOutputCompiledValue } from "./NodeOutputCompiledValue"; export declare const FulfilledWorkflowNodeResultEvent: core.serialization.ObjectSchema; export declare namespace FulfilledWorkflowNodeResultEvent { interface Raw { id: string; node_id: string; node_result_id: string; state: "FULFILLED"; ts?: (string | null) | null; data?: (WorkflowNodeResultData.Raw | null) | null; source_execution_id?: (string | null) | null; output_values: NodeOutputCompiledValue.Raw[]; mocked?: boolean | null; } }