mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-07 04:20:49 +00:00
22 lines
601 B
Markdown
22 lines
601 B
Markdown
# State
|
|
|
|
The state of the media item
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { State } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: State = State.Playing;
|
|
```
|
|
|
|
## Values
|
|
|
|
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
|
|
|
|
| Name | Value |
|
|
| ---------------------- | ---------------------- |
|
|
| `Playing` | playing |
|
|
| `Paused` | paused |
|
|
| `Stopped` | stopped |
|
|
| - | `Unrecognized<string>` | |