Interface FlowNodeRunRecord

interface FlowNodeRunRecord {
    id: string;
    upstreamRuns: UpstreamFlowNodeRun[];
    input: any;
    status: FlowNodeRunStatus;
    logs: any[];
    outputs: FlowNodeRunOutput[];
    outputFileUri?: string;
    errors: ErrorData[];
}

Hierarchy (view full)

Properties

id: string
upstreamRuns: UpstreamFlowNodeRun[]
input: any
logs: any[]
outputFileUri?: string
errors: ErrorData[]