mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
3.6 KiB
3.6 KiB
GetMediaMetaDataDirector
Example Usage
import { GetMediaMetaDataDirector } from "@lukehagar/plexjs/sdk/models/operations";
let value: GetMediaMetaDataDirector = {
id: 109501,
filter: "actor=109501",
tag: "Bob Odenkirk",
tagKey: "5d77683254f42c001f8c3f69",
role: "Jimmy McGill",
thumb:
"https://metadata-static.plex.tv/f/people/f2ca7b474cc984efbdd5c503a096285a.jpg",
};
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
id |
number | ✔️ | The unique role identifier. | 109501 |
filter |
string | ✔️ | The filter string for the role. | actor=109501 |
tag |
string | ✔️ | The actor's name. | Bob Odenkirk |
tagKey |
string | ✔️ | A key associated with the actor tag. | 5d77683254f42c001f8c3f69 |
role |
string | ➖ | The character name or role. | Jimmy McGill |
thumb |
string | ➖ | URL for the role thumbnail image. | https://metadata-static.plex.tv/f/people/f2ca7b474cc984efbdd5c503a096285a.jpg |