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

    Interface WorkflowStepExecution

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

    Properties

    stepId?: string
    attempts?: readonly WorkflowStepAttempt[]
    input?: JsonInput
    output?: JsonInput
    statusMessage?: string
    skipReason?: string
    startedAt?: Date
    completedAt?: Date