mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
21 lines
1.5 KiB
Markdown
21 lines
1.5 KiB
Markdown
# GetSearchAllLibrariesMetaDataRating
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { GetSearchAllLibrariesMetaDataRating } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: GetSearchAllLibrariesMetaDataRating = {
|
|
image: "themoviedb://image.rating",
|
|
value: 3,
|
|
type: "audience",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description | Example |
|
|
| -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- |
|
|
| `image` | *string* | :heavy_check_mark: | A URI or path to the rating image. | themoviedb://image.rating |
|
|
| `value` | *number* | :heavy_check_mark: | The value of the rating. | 3 |
|
|
| `type` | *string* | :heavy_check_mark: | The type of rating (e.g., audience, critic). | audience | |