mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
28 lines
706 B
Markdown
28 lines
706 B
Markdown
# GetLibraryItemsShowOrdering
|
|
|
|
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 { GetLibraryItemsShowOrdering } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: GetLibraryItemsShowOrdering =
|
|
GetLibraryItemsShowOrdering.TvdbAbsolute;
|
|
```
|
|
|
|
## Values
|
|
|
|
| Name | Value |
|
|
| -------------- | -------------- |
|
|
| `None` | None |
|
|
| `TmdbAiring` | tmdbAiring |
|
|
| `TvdbAired` | aired |
|
|
| `TvdbDvd` | dvd |
|
|
| `TvdbAbsolute` | absolute | |