mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-09 20:47:47 +00:00
27 lines
611 B
Markdown
27 lines
611 B
Markdown
# ShowOrdering
|
|
|
|
Setting that indicates the episode ordering for the show
|
|
None = Library default,
|
|
tmdbAiring = The Movie Database (Aired),
|
|
aired = TheTVDB (Aired),
|
|
dvd = TheTVDB (DVD),
|
|
absolute = TheTVDB (Absolute)).
|
|
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { ShowOrdering } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: ShowOrdering = ShowOrdering.Dvd;
|
|
```
|
|
|
|
## Values
|
|
|
|
| Name | Value |
|
|
| ------------ | ------------ |
|
|
| `None` | None |
|
|
| `TmdbAiring` | tmdbAiring |
|
|
| `Aired` | aired |
|
|
| `Dvd` | dvd |
|
|
| `Absolute` | absolute | |