Package org.drinkless.tdlib
Class TdApi.AddLocalMessage
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.AddLocalMessage
-
- Enclosing class:
- TdApi
public static class TdApi.AddLocalMessage extends TdApi.Function
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 Summary
Fields Modifier and Type Field Description longchatIdTarget chat.static intCONSTRUCTORIdentifier uniquely determining type of the object.booleandisableNotificationPass true to disable notification for the message.TdApi.InputMessageContentinputMessageContentThe content of the message to be added.longreplyToMessageIdIdentifier of the message to reply to or 0.TdApi.MessageSendersenderIdIdentifier of the sender of the message.
-
Constructor Summary
Constructors Constructor Description AddLocalMessage()Default constructor for a function, which adds a local message to a chat.AddLocalMessage(long chatId, TdApi.MessageSender senderId, long replyToMessageId, boolean disableNotification, TdApi.InputMessageContent inputMessageContent)Creates a function, which adds a local message to a chat.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
-
-
-
Field Detail
-
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 message to reply to or 0.
-
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
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AddLocalMessage
public AddLocalMessage()
Default constructor for a function, which 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)Creates a function, which 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- Target chat.senderId- Identifier of the sender of the message.replyToMessageId- Identifier of the message to reply to or 0.disableNotification- Pass true to disable notification for the message.inputMessageContent- The content of the message to be added.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-