Sha256: beac60ffa4e03bc911e7ea1626d6a460d523e17511b56004cb519c4e24fd0e01

Contents?: true

Size: 397 Bytes

Versions: 3

Compression:

Stored size: 397 Bytes

Contents

module TD::Types
  # The view count of the message has changed.
  #
  # @attr chat_id [Integer] Chat identifier.
  # @attr message_id [Integer] Message identifier.
  # @attr views [Integer] New value of the view count.
  class Update::MessageViews < Update
    attribute :chat_id, TD::Types::Integer
    attribute :message_id, TD::Types::Integer
    attribute :views, 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/update/message_views.rb
tdlib-ruby-2.1.0 lib/tdlib/types/update/message_views.rb
tdlib-ruby-2.0.0 lib/tdlib/types/update/message_views.rb