@valon-technologies/gestalt
    Preparing search index...

    Interface WorkflowStepExecution

    interface WorkflowStepExecution {
        stepId: string;
        status: number;
        attempts: WorkflowStepAttempt[];
        input?: JsonValue;
        output?: JsonValue;
        statusMessage: string;
        skipReason: string;
        startedAt?: Date;
        completedAt?: Date;
    }
    Index

    Properties

    stepId: string
    status: number
    input?: JsonValue
    output?: JsonValue
    statusMessage: string
    skipReason: string
    startedAt?: Date
    completedAt?: Date