n8n
Version:
n8n Workflow Automation Tool
22 lines (21 loc) • 689 B
TypeScript
import { ExecutionStatus, WorkflowExecuteMode } from 'n8n-workflow';
import { Relation } from '@n8n/typeorm';
import type { ExecutionData } from './ExecutionData';
import type { ExecutionMetadata } from './ExecutionMetadata';
import { WorkflowEntity } from './WorkflowEntity';
export declare class ExecutionEntity {
id: string;
finished: boolean;
mode: WorkflowExecuteMode;
retryOf: string;
retrySuccessId: string;
status: ExecutionStatus;
startedAt: Date;
stoppedAt: Date;
deletedAt: Date;
workflowId: string;
waitTill: Date | null;
metadata: ExecutionMetadata[];
executionData: Relation<ExecutionData>;
workflow: WorkflowEntity;
}