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

25 lines
502 B
Ruby

# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
# typed: true
# frozen_string_literal: true
module PlexRubySDK
module Models
module Operations
INCLUDE_EXTERNAL_MEDIA_SERVERS = [
'https://discover.provider.plex.tv'
].freeze
# IncludeExternalMedia - include external media in the results
#
class IncludeExternalMedia < T::Enum
enums do
ONE = new(1)
ZERO = new(0)
end
end
end
end
end