@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias BatchOperationItemResponse

    type BatchOperationItemResponse = {
        batchOperationKey?: BatchOperationKey;
        errorMessage?: string;
        itemKey?: string;
        operationType?: BatchOperationTypeEnum;
        processedDate?: string;
        processInstanceKey?: ProcessInstanceKey;
        state?: "ACTIVE" | "COMPLETED" | "SKIPPED" | "CANCELED" | "FAILED";
    }
    Index

    Properties

    batchOperationKey?: BatchOperationKey

    The key (or operate legacy ID) of the batch operation.

    errorMessage?: string

    the error message from the engine in case of a failed operation.

    itemKey?: string

    Key of the item, e.g. a process instance key.

    operationType?: BatchOperationTypeEnum
    processedDate?: string

    the date this item was processed.

    processInstanceKey?: ProcessInstanceKey

    the process instance key of the processed item.

    state?: "ACTIVE" | "COMPLETED" | "SKIPPED" | "CANCELED" | "FAILED"

    State of the item.