Sha256: 82127815e0599aff95e484341498a9a2c1f338a0047263cc05780fc4f4aeb787

Contents?: true

Size: 454 Bytes

Versions: 1

Compression:

Stored size: 454 Bytes

Contents

module TD::Types
  # Represents a thumbnail.
  #
  # @attr format [TD::Types::ThumbnailFormat] Thumbnail format.
  # @attr width [Integer] Thumbnail width.
  # @attr height [Integer] Thumbnail height.
  # @attr file [TD::Types::File] The thumbnail.
  class Thumbnail < Base
    attribute :format, TD::Types::ThumbnailFormat
    attribute :width, TD::Types::Integer
    attribute :height, TD::Types::Integer
    attribute :file, TD::Types::File
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/thumbnail.rb