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

19 lines
283 B
Ruby

# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
# typed: true
# frozen_string_literal: true
module PlexRubySDK
module Operations
class HasThumbnail < T::Enum
enums do
FALSE = new('0')
TRUE = new('1')
end
end
end
end