mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 12:47:44 +00:00
20 lines
645 B
Swift
20 lines
645 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),
|
|
/// tvdbAiring = TheTVDB (Aired),
|
|
/// tvdbDvd = TheTVDB (DVD),
|
|
/// tvdbAbsolute = TheTVDB (Absolute)).
|
|
///
|
|
public enum GetLibraryItemsShowOrdering: String, Codable, APIValue {
|
|
case `none` = "None"
|
|
case tmdbAiring = "tmdbAiring"
|
|
case tvdbAiring = "tvdbAiring"
|
|
case tvdbDvd = "tvdbDvd"
|
|
case tvdbAbsolute = "tvdbAbsolute"
|
|
}}
|