Class TdApi.GetMessagePublicForwards

  • Enclosing class:
    TdApi

    public static class TdApi.GetMessagePublicForwards
    extends TdApi.Function
    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 Detail

      • 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 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
        Identifier uniquely determining type of the object.
        See Also:
        Constant Field Values
    • Constructor Detail

      • GetMessagePublicForwards

        public GetMessagePublicForwards()
        Default constructor for a function, which 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)
        Creates a function, which 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 - Chat identifier of the message.
        messageId - Message identifier.
        offset - Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results.
        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.