Files
plexswift/Sources/Plexswift/models/operations/GetLibraryItemsShowOrdering.swift

20 lines
619 B
Swift

// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
import Foundation
extension Operations {
/// 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)).
///
public enum GetLibraryItemsShowOrdering: String, Codable, APIValue {
case `none` = "None"
case tmdbAiring = "tmdbAiring"
case tvdbAired = "aired"
case tvdbDvd = "dvd"
case tvdbAbsolute = "absolute"
}}