Class: TD::Types::Update::MessageSendAcknowledged

Inherits:
TD::Types::Update show all
Defined in:
lib/tdlib/types/update/message_send_acknowledged.rb

Overview

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.

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#to_hash, #to_json

Instance Attribute Details

#chat_idInteger

The chat identifier of the sent message.

Returns:

  • (Integer)

    the current value of chat_id



10
11
12
# File 'lib/tdlib/types/update/message_send_acknowledged.rb', line 10

def chat_id
  @chat_id
end

#message_idInteger

A temporary message identifier.

Returns:

  • (Integer)

    the current value of message_id



10
11
12
# File 'lib/tdlib/types/update/message_send_acknowledged.rb', line 10

def message_id
  @message_id
end