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

21 lines
384 B
Ruby

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