Type alias DocumentOperationFailure

DocumentOperationFailure: {
    error: true;
    errorMessage: string;
    errorNum: number;
}

Represents a bulk operation failure for an individual document.

Type declaration

  • error: true

    Indicates that the operation failed.

  • errorMessage: string

    Human-readable description of the failure.

  • errorNum: number

    Numeric representation of the failure.

Generated using TypeDoc