Package org.drinkless.tdlib
Class TdApi.UpdateMessageSendSucceeded
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Update
-
- org.drinkless.tdlib.TdApi.UpdateMessageSendSucceeded
-
- Enclosing class:
- TdApi
public static class TdApi.UpdateMessageSendSucceeded extends TdApi.Update
A message has been successfully sent.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.MessagemessageThe sent message.longoldMessageIdThe previous temporary message identifier.
-
Constructor Summary
Constructors Constructor Description UpdateMessageSendSucceeded()A message has been successfully sent.UpdateMessageSendSucceeded(TdApi.Message message, long oldMessageId)A message has been successfully sent.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
message
public TdApi.Message message
The sent message. Usually only the message identifier, date, and content are changed, but almost all other fields can also change.
-
oldMessageId
public long oldMessageId
The previous temporary message identifier.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UpdateMessageSendSucceeded
public UpdateMessageSendSucceeded()
A message has been successfully sent.
-
UpdateMessageSendSucceeded
public UpdateMessageSendSucceeded(TdApi.Message message, long oldMessageId)
A message has been successfully sent.- Parameters:
message- The sent message. Usually only the message identifier, date, and content are changed, but almost all other fields can also change.oldMessageId- The previous temporary message identifier.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-