ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.531.4

This commit is contained in:
speakeasybot
2025-04-15 00:10:22 +00:00
parent 1be9c77a05
commit f1b7dcb619
2010 changed files with 41994 additions and 36602 deletions

View File

@@ -5,22 +5,24 @@
module PlexRubySDK
module Operations
# ShowOrdering - 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)).
#
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')
module Models
module Operations
# ShowOrdering - 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)).
#
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