Sha256: 918f8e4a28f1ccc9364ffd1aab7c8e7f6514c05b026173ca4f3d6494940d5faf
Contents?: true
Size: 650 Bytes
Versions: 4
Compression:
Stored size: 650 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module PlexRubySDK module Operations # QueryParamType - 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 QueryParamType < 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
4 entries across 4 versions & 1 rubygems