mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
841 B
841 B
ProcessingState
The state of processing if this generator is part of an optimizer playlist
Example Usage
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> |