Sha256: c52ed6c13123f50a98e9d8394c9772ce8646cd48873dd0e8a0e5481bf27aa48a

Contents?: true

Size: 441 Bytes

Versions: 3

Compression:

Stored size: 441 Bytes

Contents

module TD::Types
  # Thumbnail image of a very poor quality and low resolution.
  #
  # @attr width [Integer] Thumbnail width, usually doesn't exceed 40.
  # @attr height [Integer] Thumbnail height, usually doesn't exceed 40.
  # @attr data [String] The thumbnail in JPEG format.
  class Minithumbnail < Base
    attribute :width, TD::Types::Integer
    attribute :height, TD::Types::Integer
    attribute :data, TD::Types::String
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/minithumbnail.rb
tdlib-ruby-2.2.0 lib/tdlib/types/minithumbnail.rb
tdlib-ruby-2.1.0 lib/tdlib/types/minithumbnail.rb