# DeleteResponse

> **Class** in `langchain_core`

📖 [View in docs](https://reference.langchain.com/python/langchain-core/indexing/base/DeleteResponse)

A generic response for delete operation.

The fields in this response are optional and whether the `VectorStore`
returns them or not is up to the implementation.

## Signature

```python
DeleteResponse()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    num_deleted: int,
    succeeded: Sequence[str],
    failed: Sequence[str],
    num_failed: int,
)
```

| Name | Type |
|------|------|
| `num_deleted` | `int` |
| `succeeded` | `Sequence[str]` |
| `failed` | `Sequence[str]` |
| `num_failed` | `int` |


## Properties

- `num_deleted`
- `succeeded`
- `failed`
- `num_failed`

---

[View source on GitHub](https://github.com/langchain-ai/langchain/blob/6fb37dba71da807af60aa7b909f71f0625a666bf/libs/core/langchain_core/indexing/base.py#L460)