Interface BatchOperationResult<S, F>

The Sudo Platform SDK representation of the result from a batch operation.

BatchOperationPartialResult<S,F=S>

interface BatchOperationResult<S, F> {
    failureValues?: F[];
    status: BatchOperationResultStatus;
    successValues?: S[];
}

Type Parameters

  • S
  • F = S

Properties

failureValues?: F[]

List of the values that failed.

Status of the batch operation result.

successValues?: S[]

List of the values that were successful.