Class TdApi.UpdateMessageSendAcknowledged

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.Update
it.tdlight.jni.TdApi.UpdateMessageSendAcknowledged
Enclosing class:
TdApi

public static class TdApi.UpdateMessageSendAcknowledged
extends TdApi.Update
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.
  • Field Details

    • chatId

      public long chatId
      The chat identifier of the sent message.
    • messageId

      public long messageId
      A temporary message identifier.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
      Constant Field Values
  • Constructor Details

    • UpdateMessageSendAcknowledged

      public UpdateMessageSendAcknowledged()
      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.
    • UpdateMessageSendAcknowledged

      public UpdateMessageSendAcknowledged​(long chatId, long messageId)
      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.
      Parameters:
      chatId - long The chat identifier of the sent message.
      messageId - long A temporary message identifier.
    • UpdateMessageSendAcknowledged

      public UpdateMessageSendAcknowledged​(DataInput input) throws IOException
      Throws:
      IOException
  • Method Details