Sha256: 94d82bd540b3a4e08816bf86ad9650d2fb689598e23345047800d9a43ca05c33

Contents?: true

Size: 481 Bytes

Versions: 3

Compression:

Stored size: 481 Bytes

Contents

module TD::Types
  # Photo description.
  #
  # @attr type [String] Thumbnail type (see https://core.telegram.org/constructor/photoSize).
  # @attr photo [TD::Types::File] Information about the photo file.
  # @attr width [Integer] Photo width.
  # @attr height [Integer] Photo height.
  class PhotoSize < Base
    attribute :type, TD::Types::String
    attribute :photo, TD::Types::File
    attribute :width, TD::Types::Integer
    attribute :height, TD::Types::Integer
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/photo_size.rb
tdlib-ruby-2.1.0 lib/tdlib/types/photo_size.rb
tdlib-ruby-2.0.0 lib/tdlib/types/photo_size.rb