> ## 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

```typescript theme={null}
import { BatchDeletionOutcome } from "@openrouter/sdk/models";

let value: BatchDeletionOutcome = "deleted";

// Open enum: unrecognized values are captured as Unrecognized<string>
```

## Values

```typescript theme={null}
"deleted" | "unsupported" | "not_applicable" | Unrecognized<string>
```
