mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 12:47:44 +00:00
22 lines
439 B
Ruby
22 lines
439 B
Ruby
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
|
|
module PlexRubySDK
|
|
module Models
|
|
module Operations
|
|
|
|
# Hidden - The Plex library visibility setting
|
|
class Hidden < T::Enum
|
|
enums do
|
|
VISIBLE = new(0)
|
|
EXCLUDE_HOME_SCREEN = new(1)
|
|
EXCLUDE_HOME_SCREEN_AND_GLOBAL_SEARCH = new(2)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|