Package org.drinkless.tdlib
Class TdApi.DeleteMessages
- Enclosing class:
- TdApi
Deletes messages.
Returns Ok
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongChat identifier.static final intIdentifier uniquely determining type of the object.long[]Identifiers of the messages to be deleted.booleanPass true to delete messages for all chat members. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which deletes messages.DeleteMessages(long chatId, long[] messageIds, boolean revoke) Creates a function, which deletes messages. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatId
public long chatIdChat identifier. -
messageIds
public long[] messageIdsIdentifiers of the messages to be deleted. Use messageProperties.canBeDeletedOnlyForSelf and messageProperties.canBeDeletedForAllUsers to get suitable messages. -
revoke
public boolean revokePass true to delete messages for all chat members. Always true for supergroups, channels and secret chats. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
DeleteMessages
public DeleteMessages()Default constructor for a function, which deletes messages.Returns
Ok -
DeleteMessages
public DeleteMessages(long chatId, long[] messageIds, boolean revoke) Creates a function, which deletes messages.Returns
Ok- Parameters:
chatId- Chat identifier.messageIds- Identifiers of the messages to be deleted. Use messageProperties.canBeDeletedOnlyForSelf and messageProperties.canBeDeletedForAllUsers to get suitable messages.revoke- Pass true to delete messages for all chat members. Always true for supergroups, channels and secret chats.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-