Module tdlight.api

Class TdApi.AnswerCallbackQuery

Enclosing class:
TdApi

public static final class TdApi.AnswerCallbackQuery extends TdApi.Function<TdApi.Ok>
Sets the result of a callback query; for bots only. Returns Ok
  • Field Details

    • callbackQueryId

      public long callbackQueryId
      Identifier of the callback query.
    • text

      public String text
      Text of the answer.
    • showAlert

      public boolean showAlert
      Pass true to show an alert to the user instead of a toast notification.
    • url

      public String url
      URL to be opened.
    • cacheTime

      public int cacheTime
      Time during which the result of the query can be cached, in seconds.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • AnswerCallbackQuery

      public AnswerCallbackQuery()
      Sets the result of a callback query; for bots only. Returns Ok
    • AnswerCallbackQuery

      public AnswerCallbackQuery(long callbackQueryId, String text, boolean showAlert, String url, int cacheTime)
      Sets the result of a callback query; for bots only. Returns Ok
      Parameters:
      callbackQueryId - long Identifier of the callback query.
      text - String Text of the answer.
      showAlert - boolean Pass true to show an alert to the user instead of a toast notification.
      url - String URL to be opened.
      cacheTime - int Time during which the result of the query can be cached, in seconds.
    • AnswerCallbackQuery

      public AnswerCallbackQuery(DataInput input) throws IOException
      Sets the result of a callback query; for bots only. Returns Ok
      Throws:
      IOException
  • Method Details