mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 20:47:46 +00:00
25 lines
841 B
Markdown
25 lines
841 B
Markdown
# ProcessingState
|
|
|
|
The state of processing if this generator is part of an optimizer playlist
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { ProcessingState } from "@lukehagar/plexjs/models/operations";
|
|
|
|
let value: ProcessingState = ProcessingState.Disabled;
|
|
```
|
|
|
|
## Values
|
|
|
|
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
|
|
|
|
| Name | Value |
|
|
| ---------------------- | ---------------------- |
|
|
| `Processed` | processed |
|
|
| `Completed` | completed |
|
|
| `Tombstoned` | tombstoned |
|
|
| `Disabled` | disabled |
|
|
| `Error` | error |
|
|
| `Pending` | pending |
|
|
| - | `Unrecognized<string>` | |