mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-09 20:47:47 +00:00
20 lines
389 B
Markdown
20 lines
389 B
Markdown
# ReportState
|
|
|
|
The current state of the media.
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { ReportState } from "@lukehagar/plexjs/models/operations";
|
|
|
|
let value: ReportState = ReportState.Playing;
|
|
```
|
|
|
|
## Values
|
|
|
|
| Name | Value |
|
|
| ----------- | ----------- |
|
|
| `Stopped` | stopped |
|
|
| `Buffering` | buffering |
|
|
| `Playing` | playing |
|
|
| `Paused` | paused | |