Module tdlight.api

Class TdApi.InlineQueryResults

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.InlineQueryResults
Enclosing class:
TdApi

public static final class TdApi.InlineQueryResults extends TdApi.Object
Represents the results of the inline query. Use sendInlineQueryResultMessage to send the result of the query.
  • Field Details

    • inlineQueryId

      public long inlineQueryId
      Unique identifier of the inline query.
    • button

      Button to be shown above inline query results; may be null.
    • results

      public TdApi.InlineQueryResult[] results
      Results of the query.
    • nextOffset

      public String nextOffset
      The offset for the next request. If empty, there are no more results.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • InlineQueryResults

      public InlineQueryResults()
      Represents the results of the inline query. Use sendInlineQueryResultMessage to send the result of the query.
    • InlineQueryResults

      public InlineQueryResults(long inlineQueryId, TdApi.InlineQueryResultsButton button, TdApi.InlineQueryResult[] results, String nextOffset)
      Represents the results of the inline query. Use sendInlineQueryResultMessage to send the result of the query.
      Parameters:
      inlineQueryId - long Unique identifier of the inline query.
      button - InlineQueryResultsButton Button to be shown above inline query results; may be null.
      results - InlineQueryResult[] Results of the query.
      nextOffset - String The offset for the next request. If empty, there are no more results.
    • InlineQueryResults

      public InlineQueryResults(DataInput input) throws IOException
      Represents the results of the inline query. Use sendInlineQueryResultMessage to send the result of the query.
      Throws:
      IOException
  • Method Details