# EpisodeSort Setting that indicates how episodes are sorted for the show. (-1 = Library default, 0 = Oldest first, 1 = Newest first). ## Example Usage ```typescript 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` branded type. | Name | Value | | ---------------------- | ---------------------- | | `LibraryDefault` | -1 | | `OldestFirst` | 0 | | `NewestFirst` | 1 | | - | `Unrecognized` |