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

    Interface WorkflowStepAttempt

    interface WorkflowStepAttempt {
        id?: string;
        status?: WorkflowStepStatus;
        idempotencyKey?: string;
        input?: JsonInput;
        output?: JsonInput;
        statusMessage?: string;
        startedAt?: Date;
        completedAt?: Date;
    }
    Index

    Properties

    id?: string
    idempotencyKey?: string
    input?: JsonInput
    output?: JsonInput
    statusMessage?: string
    startedAt?: Date
    completedAt?: Date