Package org.drinkless.tdlib
Class TdApi.UpdateDeleteMessages
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Update
-
- org.drinkless.tdlib.TdApi.UpdateDeleteMessages
-
- Enclosing class:
- TdApi
public static class TdApi.UpdateDeleteMessages extends TdApi.Update
Some messages were deleted.
-
-
Field Summary
Fields Modifier and Type Field Description longchatIdChat identifier.static intCONSTRUCTORIdentifier uniquely determining type of the object.booleanfromCacheTrue, if the messages are deleted only from the cache and can possibly be retrieved again in the future.booleanisPermanentTrue, if the messages are permanently deleted by a user (as opposed to just becoming inaccessible).long[]messageIdsIdentifiers of the deleted messages.
-
Constructor Summary
Constructors Constructor Description UpdateDeleteMessages()Some messages were deleted.UpdateDeleteMessages(long chatId, long[] messageIds, boolean isPermanent, boolean fromCache)Some messages were deleted.
-
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
-
chatId
public long chatId
Chat identifier.
-
messageIds
public long[] messageIds
Identifiers of the deleted messages.
-
isPermanent
public boolean isPermanent
True, if the messages are permanently deleted by a user (as opposed to just becoming inaccessible).
-
fromCache
public boolean fromCache
True, if the messages are deleted only from the cache and can possibly be retrieved again in the future.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UpdateDeleteMessages
public UpdateDeleteMessages()
Some messages were deleted.
-
UpdateDeleteMessages
public UpdateDeleteMessages(long chatId, long[] messageIds, boolean isPermanent, boolean fromCache)Some messages were deleted.- Parameters:
chatId- Chat identifier.messageIds- Identifiers of the deleted messages.isPermanent- True, if the messages are permanently deleted by a user (as opposed to just becoming inaccessible).fromCache- True, if the messages are deleted only from the cache and can possibly be retrieved again in the future.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-