Sha256: a0504fdb1333339d4878edb3120687c6f4db4648e160130841e7ea550a861a3b
Contents?: true
Size: 686 Bytes
Versions: 3
Compression:
Stored size: 686 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module PlexRubySDK module Operations # GetAllMediaLibraryQueryParamType - The type of media to retrieve or filter by. # 1 = movie # 2 = show # 3 = season # 4 = episode # E.g. A movie library will not return anything with type 3 as there are no seasons for movie libraries # class GetAllMediaLibraryQueryParamType < T::Enum enums do MOVIE = new(1) TV_SHOW = new(2) SEASON = new(3) EPISODE = new(4) AUDIO = new(8) ALBUM = new(9) TRACK = new(10) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems