/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * An event that indicates that the node has rejected its execution. */ export interface RejectedWorkflowNodeResultEvent { id: string; nodeId: string; nodeResultId: string; state: "REJECTED"; ts?: Date | null; data?: Vellum.WorkflowNodeResultData | null; sourceExecutionId?: string | null; error: Vellum.WorkflowEventError; }