mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 04:20:52 +00:00
28 lines
689 B
Ruby
28 lines
689 B
Ruby
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
|
|
module PlexRubySDK
|
|
module Operations
|
|
|
|
# ShowOrdering - 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)).
|
|
#
|
|
class ShowOrdering < T::Enum
|
|
enums do
|
|
NONE = new('None')
|
|
TMDB_AIRING = new('tmdbAiring')
|
|
TVDB_AIRING = new('tvdbAiring')
|
|
TVDB_DVD = new('tvdbDvd')
|
|
TVDB_ABSOLUTE = new('tvdbAbsolute')
|
|
end
|
|
end
|
|
end
|
|
end
|