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

23 lines
442 B
Ruby

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