mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
722 B
722 B
EpisodeSort
Setting that indicates how episodes are sorted for the show. (-1 = Library default, 0 = Oldest first, 1 = Newest first).
Example Usage
import { EpisodeSort } from "@lukehagar/plexjs/sdk/models/operations";
let value: EpisodeSort = EpisodeSort.OldestFirst;
Values
This is an open enum. Unrecognized values will be captured as the Unrecognized<string> branded type.
| Name | Value |
|---|---|
LibraryDefault |
-1 |
OldestFirst |
0 |
NewestFirst |
1 |
| - | Unrecognized<string> |