mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-09 20:47:47 +00:00
23 lines
1.4 KiB
Markdown
23 lines
1.4 KiB
Markdown
# GetMediaMetaDataCountry
|
|
|
|
The filter query string for country media items.
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { GetMediaMetaDataCountry } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: GetMediaMetaDataCountry = {
|
|
id: 259,
|
|
tag: "United States of America",
|
|
filter: "country=19",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description | Example |
|
|
| ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- |
|
|
| `id` | *number* | :heavy_check_mark: | N/A | 259 |
|
|
| `tag` | *string* | :heavy_check_mark: | The country of origin of this media item | United States of America |
|
|
| `filter` | *string* | :heavy_minus_sign: | N/A | country=19 | |