mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
21 lines
758 B
Markdown
21 lines
758 B
Markdown
# Provider
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { Provider } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: Provider = {
|
|
key: "/system/search",
|
|
title: "Local Network",
|
|
type: "mixed",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description | Example |
|
|
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
|
|
| `key` | *string* | :heavy_minus_sign: | N/A | /system/search |
|
|
| `title` | *string* | :heavy_minus_sign: | N/A | Local Network |
|
|
| `type` | *string* | :heavy_minus_sign: | N/A | mixed | |