Module tdlight.api

Class TdApi.ForwardMessages

Enclosing class:
TdApi

public static final class TdApi.ForwardMessages extends TdApi.Function<TdApi.Messages>
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

    Fields
    Modifier and Type
    Field
    Description
    long
    Identifier of the chat to which to forward messages.
    static final int
    Identifier uniquely determining type of the object.
    long
    Identifier of the chat from which to forward messages.
    long[]
    Identifiers of the messages to forward.
    long
    If not 0, a message thread identifier in which the message will be sent; for forum threads only.
    boolean
    Pass true to get fake messages instead of actually forwarding them.
    Options to be used to send the messages; pass null to use default options.
    boolean
    Pass true to remove media captions of message copies.
    boolean
    Pass true to copy content of the messages without reference to the original sender.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Forwards previously sent messages.
    ForwardMessages(long chatId, long messageThreadId, long fromChatId, long[] messageIds, TdApi.MessageSendOptions options, boolean sendCopy, boolean removeCaption, boolean onlyPreview)
    Forwards previously sent messages.
    Forwards previously sent messages.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
    Returns an identifier uniquely determining type of the object.
    int
     
    void
    Serialize the TDLib class

    Methods inherited from class it.tdlight.jni.TdApi.Function

    toString

    Methods inherited from class it.tdlight.jni.TdApi.Object

    serialize

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • chatId

      public long chatId
      Identifier of the chat to which to forward messages.
    • messageThreadId

      public long messageThreadId
      If not 0, a message thread identifier in which the message will be sent; for forum threads only.
    • fromChatId

      public long fromChatId
      Identifier of the chat from which to forward messages.
    • messageIds

      public long[] messageIds
      Identifiers of the messages to forward. Message identifiers must be in a strictly increasing order. At most 100 messages can be forwarded simultaneously.
    • options

      public TdApi.MessageSendOptions options
      Options to be used to send the messages; pass null to use default options.
    • sendCopy

      public boolean 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.
    • removeCaption

      public boolean removeCaption
      Pass true to remove media captions of message copies. Ignored if sendCopy is false.
    • onlyPreview

      public boolean onlyPreview
      Pass true to get fake messages instead of actually forwarding them.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      Identifier uniquely determining type of the object.
      See Also:
  • Constructor Details

    • ForwardMessages

      public ForwardMessages()
      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, long messageThreadId, long fromChatId, long[] messageIds, TdApi.MessageSendOptions options, boolean sendCopy, boolean removeCaption, boolean onlyPreview)
      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.
      messageThreadId - If not 0, a message thread identifier in which the message will be sent; for forum threads only.
      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.
      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.
      removeCaption - Pass true to remove media captions of message copies. Ignored if sendCopy is false.
      onlyPreview - Pass true to get fake messages instead of actually forwarding them.

      Returns Messages

    • ForwardMessages

      public ForwardMessages(DataInput input) throws IOException
      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:
      input - Serialized input
      Throws:
      IOException - the deserialization failed
  • Method Details

    • getConstructor

      public int getConstructor()
      Description copied from class: TdApi.Object
      Returns an identifier uniquely determining type of the object.
      Specified by:
      getConstructor in class TdApi.Object
      Returns:
      this.CONSTRUCTOR
    • serialize

      public void serialize(DataOutput output) throws IOException
      Serialize the TDLib class
      Specified by:
      serialize in class TdApi.Object
      Parameters:
      output - output data stream
      Throws:
      IOException - the serialization failed
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object