Class TdApi.InlineQueryResults

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

public static 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.
    • nextOffset

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

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

      public String switchPmText
      If non-empty, this text must be shown on the button, which opens a private chat with the bot and sends the bot a start message with the switchPmParameter.
    • switchPmParameter

      public String switchPmParameter
      Parameter for the bot start message.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
      Constant Field Values
  • 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, String nextOffset, TdApi.InlineQueryResult[] results, String switchPmText, String switchPmParameter)
      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.
      nextOffset - String The offset for the next request. If empty, there are no more results.
      results - InlineQueryResult[] Results of the query.
      switchPmText - String If non-empty, this text must be shown on the button, which opens a private chat with the bot and sends the bot a start message with the switchPmParameter.
      switchPmParameter - String Parameter for the bot start message.
    • InlineQueryResults

      public InlineQueryResults​(DataInput input) throws IOException
      Throws:
      IOException
  • Method Details