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

19 lines
342 B
Ruby

# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
# typed: true
# frozen_string_literal: true
module PlexRubySDK
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