mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 20:47:46 +00:00
31 lines
1.2 KiB
Markdown
31 lines
1.2 KiB
Markdown
# ProcessingStateContext
|
|
|
|
The error which could have occurred (or `good`)
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { ProcessingStateContext } from "@lukehagar/plexjs/models/operations";
|
|
|
|
let value: ProcessingStateContext = ProcessingStateContext.Good;
|
|
```
|
|
|
|
## Values
|
|
|
|
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
|
|
|
|
| Name | Value |
|
|
| ------------------------- | ------------------------- |
|
|
| `Good` | good |
|
|
| `SourceFileUnavailable` | sourceFileUnavailable |
|
|
| `SourceFileMetadataError` | sourceFileMetadataError |
|
|
| `ClientProfileError` | clientProfileError |
|
|
| `IoError` | ioError |
|
|
| `TranscoderError` | transcoderError |
|
|
| `UnknownError` | unknownError |
|
|
| `MediaAnalysisError` | mediaAnalysisError |
|
|
| `DownloadFailed` | downloadFailed |
|
|
| `AccessDenied` | accessDenied |
|
|
| `CannotTranscode` | cannotTranscode |
|
|
| `CodecInstallError` | codecInstallError |
|
|
| - | `Unrecognized<string>` | |