Files
plexruby/lib/plex_ruby_sdk/models/operations/flattenseasons.rb

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