Sha256: 047b2a01ffb59cc943ea8b4521dfb3d74fd2b60f310c690d2a0b08636d76f672
Contents?: true
Size: 630 Bytes
Versions: 4
Compression:
Stored size: 630 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module PlexRubySDK module Operations # Type - 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 Type < 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