mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
23 lines
845 B
Markdown
23 lines
845 B
Markdown
# Field
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { Field } from "@lukehagar/plexjs";
|
|
|
|
let value: Field = {
|
|
key: "label",
|
|
title: "Label",
|
|
type: "tag",
|
|
subType: "bitrate",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description | Example |
|
|
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
|
|
| `key` | *string* | :heavy_minus_sign: | N/A | label |
|
|
| `title` | *string* | :heavy_minus_sign: | N/A | Label |
|
|
| `type` | *string* | :heavy_minus_sign: | N/A | tag |
|
|
| `subType` | *string* | :heavy_minus_sign: | N/A | bitrate | |