mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 04:20:52 +00:00
23 lines
505 B
Ruby
23 lines
505 B
Ruby
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
|
|
module PlexRubySDK
|
|
module Models
|
|
module Operations
|
|
|
|
# FlattenSeasons - Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).
|
|
#
|
|
class FlattenSeasons < T::Enum
|
|
enums do
|
|
LIBRARY_DEFAULT = new('-1')
|
|
HIDE = new('0')
|
|
SHOW = new('1')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|