mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-09 12:37:46 +00:00
21 lines
940 B
Markdown
21 lines
940 B
Markdown
# Ratings
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { Ratings } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: Ratings = {
|
|
image: "themoviedb://image.rating",
|
|
value: 7.4,
|
|
type: "audience",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description | Example |
|
|
| ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- |
|
|
| `image` | *string* | :heavy_minus_sign: | N/A | themoviedb://image.rating |
|
|
| `value` | *number* | :heavy_minus_sign: | N/A | 7.4 |
|
|
| `type` | *string* | :heavy_minus_sign: | N/A | audience | |