mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
32 lines
4.3 KiB
Markdown
32 lines
4.3 KiB
Markdown
# GetSearchResultsPart
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { GetSearchResultsPart } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: GetSearchResultsPart = {
|
|
id: 26610,
|
|
key: "/library/parts/26610/1589234571/file.mkv",
|
|
duration: 6612628,
|
|
file:
|
|
"/movies/Mission Impossible (1996)/Mission Impossible (1996) Bluray-1080p.mkv",
|
|
size: 3926903851,
|
|
audioProfile: "lc",
|
|
container: "mkv",
|
|
videoProfile: "main 10",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description | Example |
|
|
| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
|
|
| `id` | *number* | :heavy_minus_sign: | N/A | 26610 |
|
|
| `key` | *string* | :heavy_minus_sign: | N/A | /library/parts/26610/1589234571/file.mkv |
|
|
| `duration` | *number* | :heavy_minus_sign: | N/A | 6612628 |
|
|
| `file` | *string* | :heavy_minus_sign: | N/A | /movies/Mission Impossible (1996)/Mission Impossible (1996) Bluray-1080p.mkv |
|
|
| `size` | *number* | :heavy_minus_sign: | N/A | 3926903851 |
|
|
| `audioProfile` | *string* | :heavy_minus_sign: | N/A | lc |
|
|
| `container` | *string* | :heavy_minus_sign: | N/A | mkv |
|
|
| `videoProfile` | *string* | :heavy_minus_sign: | N/A | main 10 | |