Class TdApi.AnswerCallbackQuery

  • Enclosing class:
    TdApi

    public static class TdApi.AnswerCallbackQuery
    extends TdApi.Function
    Sets the result of a callback query; for bots only.

    Returns Ok

    • Field Detail

      • callbackQueryId

        public long callbackQueryId
        Identifier of the callback query.
      • text

        public String text
        Text of the answer.
      • showAlert

        public boolean showAlert
        If true, an alert must be shown 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
        Identifier uniquely determining type of the object.
        See Also:
        Constant Field Values
    • Constructor Detail

      • AnswerCallbackQuery

        public AnswerCallbackQuery()
        Default constructor for a function, which 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)
        Creates a function, which sets the result of a callback query; for bots only.

        Returns Ok

        Parameters:
        callbackQueryId - Identifier of the callback query.
        text - Text of the answer.
        showAlert - If true, an alert must be shown to the user instead of a toast notification.
        url - URL to be opened.
        cacheTime - Time during which the result of the query can be cached, in seconds.