Sha256: 98f23a92214846af0bb5f52837f9a9caabaedf543a1eb85cef32143a6a9d424e

Contents?: true

Size: 639 Bytes

Versions: 4

Compression:

Stored size: 639 Bytes

Contents

module TD::Types
  # A request to send a message has reached the Telegram server.
  # This doesn't mean that the message will be sent successfully or even that the send message request will be
  #   processed.
  # This update will be sent only if the option "use_quick_ack" is set to true.
  # This update may be sent multiple times for the same message.
  #
  # @attr chat_id [Integer] The chat identifier of the sent message.
  # @attr message_id [Integer] A temporary message identifier.
  class Update::MessageSendAcknowledged < Update
    attribute :chat_id, TD::Types::Integer
    attribute :message_id, TD::Types::Integer
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/update/message_send_acknowledged.rb
tdlib-ruby-2.2.0 lib/tdlib/types/update/message_send_acknowledged.rb
tdlib-ruby-2.1.0 lib/tdlib/types/update/message_send_acknowledged.rb
tdlib-ruby-2.0.0 lib/tdlib/types/update/message_send_acknowledged.rb