mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 12:47:44 +00:00
31 lines
754 B
Ruby
31 lines
754 B
Ruby
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
|
|
module PlexRubySDK
|
|
module Models
|
|
module Operations
|
|
|
|
# ShowOrdering - Setting that indicates the episode ordering for the show.
|
|
# Options:
|
|
# - None = Library default
|
|
# - tmdbAiring = The Movie Database (Aired)
|
|
# - aired = TheTVDB (Aired)
|
|
# - dvd = TheTVDB (DVD)
|
|
# - absolute = TheTVDB (Absolute)
|
|
#
|
|
class ShowOrdering < T::Enum
|
|
enums do
|
|
NONE = new('None')
|
|
TMDB_AIRING = new('tmdbAiring')
|
|
TVDB_AIRED = new('aired')
|
|
TVDB_DVD = new('dvd')
|
|
TVDB_ABSOLUTE = new('absolute')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|