Sha256: 170a2c3d0dfa0ae35d9423c9a3f09267eb8f4cb124dc729d9b2a8fc995bb97ac

Contents?: true

Size: 615 Bytes

Versions: 2

Compression:

Stored size: 615 Bytes

Contents

module TD::Types
  # The last message of a chat was changed.
  # If last_message is null then the last message in the chat became unknown.
  # Some new unknown messages might be added to the chat in this case.
  #
  # @attr chat_id [Integer] Chat identifier.
  # @attr last_message [TD::Types::Message, nil] The new last message in the chat; may be null.
  # @attr order [Integer] New value of the chat order.
  class Update::ChatLastMessage < Update
    attribute :chat_id, TD::Types::Integer
    attribute :last_message, TD::Types::Message.optional.default(nil)
    attribute :order, TD::Types::Integer
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-ruby-2.1.0 lib/tdlib/types/update/chat_last_message.rb
tdlib-ruby-2.0.0 lib/tdlib/types/update/chat_last_message.rb