@sudoplatform/sudo-email

    Interface BatchOperationResult<S, F>

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

    BatchOperationPartialResult<S,F=S>

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

    Type Parameters

    • S
    • F = S
    Index

    Properties

    failureValues?: F[]

    List of the values that failed.

    Status of the batch operation result.

    successValues?: S[]

    List of the values that were successful.

    MMNEPVFCICPMFPCPTTAAATR