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. This update is 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



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

def chat_id
  @chat_id
end

#message_idInteger

A temporary message identifier.

Returns:

  • (Integer)

    the current value of message_id



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

def message_id
  @message_id
end