Package org.drinkless.tdlib
Class TdApi.ForwardMessages
- Enclosing class:
- TdApi
Forwards previously sent messages. Returns the forwarded messages in the same order as the message identifiers passed in messageIds. If a message can't be forwarded, null will be returned instead of the message.
Returns Messages
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongIdentifier of the chat to which to forward messages.static final intIdentifier uniquely determining type of the object.longIdentifier of the chat from which to forward messages.long[]Identifiers of the messages to forward.Options to be used to send the messages; pass null to use default options.booleanPass true to remove media captions of message copies.booleanPass true to copy content of the messages without reference to the original sender.Topic in which the messages will be forwarded; message threads aren't supported; pass null if none. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which forwards previously sent messages.ForwardMessages(long chatId, TdApi.MessageTopic topicId, long fromChatId, long[] messageIds, TdApi.MessageSendOptions options, boolean sendCopy, boolean removeCaption) Creates a function, which forwards previously sent 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 chatIdIdentifier of the chat to which to forward messages. -
topicId
Topic in which the messages will be forwarded; message threads aren't supported; pass null if none. -
fromChatId
public long fromChatIdIdentifier of the chat from which to forward messages. -
messageIds
public long[] messageIdsIdentifiers of the messages to forward. Message identifiers must be in a strictly increasing order. At most 100 messages can be forwarded simultaneously. A message can be forwarded only if messageProperties.canBeForwarded. -
options
Options to be used to send the messages; pass null to use default options. -
sendCopy
public boolean sendCopyPass true to copy content of the messages without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local. Use messageProperties.canBeCopied and messageProperties.canBeCopiedToSecretChat to check whether the message is suitable. -
removeCaption
public boolean removeCaptionPass true to remove media captions of message copies. Ignored if sendCopy is false. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
ForwardMessages
public ForwardMessages()Default constructor for a function, which forwards previously sent messages. Returns the forwarded messages in the same order as the message identifiers passed in messageIds. If a message can't be forwarded, null will be returned instead of the message.Returns
Messages -
ForwardMessages
public ForwardMessages(long chatId, TdApi.MessageTopic topicId, long fromChatId, long[] messageIds, TdApi.MessageSendOptions options, boolean sendCopy, boolean removeCaption) Creates a function, which forwards previously sent messages. Returns the forwarded messages in the same order as the message identifiers passed in messageIds. If a message can't be forwarded, null will be returned instead of the message.Returns
Messages- Parameters:
chatId- Identifier of the chat to which to forward messages.topicId- Topic in which the messages will be forwarded; message threads aren't supported; pass null if none.fromChatId- Identifier of the chat from which to forward messages.messageIds- Identifiers of the messages to forward. Message identifiers must be in a strictly increasing order. At most 100 messages can be forwarded simultaneously. A message can be forwarded only if messageProperties.canBeForwarded.options- Options to be used to send the messages; pass null to use default options.sendCopy- Pass true to copy content of the messages without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local. Use messageProperties.canBeCopied and messageProperties.canBeCopiedToSecretChat to check whether the message is suitable.removeCaption- Pass true to remove media captions of message copies. Ignored if sendCopy is false.
-
-
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
-