ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.476.2

This commit is contained in:
speakeasybot
2025-01-28 00:09:08 +00:00
parent 02b200c444
commit 4c342aad64
19 changed files with 91 additions and 80 deletions

View File

@@ -7,20 +7,20 @@
module PlexRubySDK
module Operations
# ShowOrdering - Setting that indicates the episode ordering for the show
# 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)).
# aired = TheTVDB (Aired),
# dvd = TheTVDB (DVD),
# absolute = 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')
TVDB_AIRED = new('aired')
TVDB_DVD = new('dvd')
TVDB_ABSOLUTE = new('absolute')
end
end
end