Module tdlight.api

Class TdApi.GetMessagePublicForwards

Enclosing class:
TdApi

public static final class TdApi.GetMessagePublicForwards extends TdApi.Function<TdApi.FoundMessages>
Returns forwarded copies of a channel message to different public channels. For optimal performance, the number of returned messages is chosen by TDLib. Returns FoundMessages
  • Field Details

    • chatId

      public long chatId
      Chat identifier of the message.
    • messageId

      public long messageId
      Message identifier.
    • offset

      public String offset
      Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.
    • limit

      public int limit
      The maximum number of messages to be returned; must be positive and can't be greater than 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • GetMessagePublicForwards

      public GetMessagePublicForwards()
      Returns forwarded copies of a channel message to different public channels. For optimal performance, the number of returned messages is chosen by TDLib. Returns FoundMessages
    • GetMessagePublicForwards

      public GetMessagePublicForwards(long chatId, long messageId, String offset, int limit)
      Returns forwarded copies of a channel message to different public channels. For optimal performance, the number of returned messages is chosen by TDLib. Returns FoundMessages
      Parameters:
      chatId - long Chat identifier of the message.
      messageId - long Message identifier.
      offset - String Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.
      limit - int The maximum number of messages to be returned; must be positive and can't be greater than 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.
    • GetMessagePublicForwards

      public GetMessagePublicForwards(DataInput input) throws IOException
      Returns forwarded copies of a channel message to different public channels. For optimal performance, the number of returned messages is chosen by TDLib. Returns FoundMessages
      Throws:
      IOException
  • Method Details