Type Alias BatchComputationStatusResponse

Status of a batch computation, including per-dataset breakdown.

type BatchComputationStatusResponse = {
    batchComputationId: string;
    computationStatuses: BatchComputationDatasetStatusResponse[];
    status: BatchComputationAggregatedStatus;
}
Index
batchComputationId: string

The unique identifier of the batch computation.

Status of each individual dataset computation within the batch.

Overall status aggregated across all datasets in the batch.