mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
29 lines
1.9 KiB
Markdown
29 lines
1.9 KiB
Markdown
# CreatePlayQueueResponse
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { CreatePlayQueueResponse } from "@lukehagar/plexjs/models/operations";
|
|
|
|
let value: CreatePlayQueueResponse = {
|
|
headers: {
|
|
"key": [],
|
|
"key1": [
|
|
"<value 1>",
|
|
"<value 2>",
|
|
],
|
|
"key2": [
|
|
"<value 1>",
|
|
"<value 2>",
|
|
],
|
|
},
|
|
result: {},
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description |
|
|
| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ |
|
|
| `headers` | Record<string, *string*[]> | :heavy_check_mark: | N/A |
|
|
| `result` | [operations.CreatePlayQueueResponseBody](../../models/operations/createplayqueueresponsebody.md) | :heavy_check_mark: | N/A | |