> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# BatchDeletionOutcome

Outcome for one deletion target: `deleted` (removed), `unsupported` (the provider has no batch-delete API; supported file cleanup still runs), or `not_applicable` (the batch never reached that target).

## Example Usage

```python theme={null}
from openrouter.components import BatchDeletionOutcome

# Open enum: unrecognized values are captured as UnrecognizedStr
value: BatchDeletionOutcome = "deleted"
```

## Values

This is an open enum. Unrecognized values will not fail type checks.

* `"deleted"`
* `"unsupported"`
* `"not_applicable"`
