Module tdlight.api

Class TdApi.GetForumTopics

Enclosing class:
TdApi

public static final class TdApi.GetForumTopics extends TdApi.Function<TdApi.ForumTopics>
Returns found forum topics in a forum chat. This is a temporary method for getting information about topic list from the server. Returns ForumTopics
  • Field Details

    • chatId

      public long chatId
      Identifier of the forum chat.
    • query

      public String query
      Query to search for in the forum topic's name.
    • offsetDate

      public int offsetDate
      The date starting from which the results need to be fetched. Use 0 or any date in the future to get results from the last topic.
    • offsetMessageId

      public long offsetMessageId
      The message identifier of the last message in the last found topic, or 0 for the first request.
    • offsetMessageThreadId

      public long offsetMessageThreadId
      The message thread identifier of the last found topic, or 0 for the first request.
    • limit

      public int limit
      The maximum number of forum topics to be returned; up to 100. For optimal performance, the number of returned forum topics is chosen by TDLib and can be smaller than the specified limit.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • GetForumTopics

      public GetForumTopics()
      Returns found forum topics in a forum chat. This is a temporary method for getting information about topic list from the server. Returns ForumTopics
    • GetForumTopics

      public GetForumTopics(long chatId, String query, int offsetDate, long offsetMessageId, long offsetMessageThreadId, int limit)
      Returns found forum topics in a forum chat. This is a temporary method for getting information about topic list from the server. Returns ForumTopics
      Parameters:
      chatId - long Identifier of the forum chat.
      query - String Query to search for in the forum topic's name.
      offsetDate - int The date starting from which the results need to be fetched. Use 0 or any date in the future to get results from the last topic.
      offsetMessageId - long The message identifier of the last message in the last found topic, or 0 for the first request.
      offsetMessageThreadId - long The message thread identifier of the last found topic, or 0 for the first request.
      limit - int The maximum number of forum topics to be returned; up to 100. For optimal performance, the number of returned forum topics is chosen by TDLib and can be smaller than the specified limit.
    • GetForumTopics

      public GetForumTopics(DataInput input) throws IOException
      Returns found forum topics in a forum chat. This is a temporary method for getting information about topic list from the server. Returns ForumTopics
      Throws:
      IOException
  • Method Details