Module tdlight.api

Class TdApi.AddLocalMessage

Enclosing class:
TdApi

public static final class TdApi.AddLocalMessage extends TdApi.Function<TdApi.Message>
Adds a local message to a chat. The message is persistent across application restarts only if the message database is used. Returns the added message. Returns Message
  • Field Details

    • chatId

      public long chatId
      Target chat.
    • senderId

      public TdApi.MessageSender senderId
      Identifier of the sender of the message.
    • replyToMessageId

      public long replyToMessageId
      Identifier of the replied message; 0 if none.
    • disableNotification

      public boolean disableNotification
      Pass true to disable notification for the message.
    • inputMessageContent

      public TdApi.InputMessageContent inputMessageContent
      The content of the message to be added.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • AddLocalMessage

      public AddLocalMessage()
      Adds a local message to a chat. The message is persistent across application restarts only if the message database is used. Returns the added message. Returns Message
    • AddLocalMessage

      public AddLocalMessage(long chatId, TdApi.MessageSender senderId, long replyToMessageId, boolean disableNotification, TdApi.InputMessageContent inputMessageContent)
      Adds a local message to a chat. The message is persistent across application restarts only if the message database is used. Returns the added message. Returns Message
      Parameters:
      chatId - long Target chat.
      senderId - MessageSender Identifier of the sender of the message.
      replyToMessageId - long Identifier of the replied message; 0 if none.
      disableNotification - boolean Pass true to disable notification for the message.
      inputMessageContent - InputMessageContent The content of the message to be added.
    • AddLocalMessage

      public AddLocalMessage(DataInput input) throws IOException
      Adds a local message to a chat. The message is persistent across application restarts only if the message database is used. Returns the added message. Returns Message
      Throws:
      IOException
  • Method Details