;; SPDX-License-Identifier: EUPL-1.2 ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs (defpackage :ukkoclot/src/tg/answer-callback-query (:documentation "answerCallbackQuery Telegram method") (:use :c2cl :ukkoclot/src/tg/method-macros) (:export :answer-callback-query)) (in-package :ukkoclot/src/tg/answer-callback-query) (define-tg-method (answer-callback-query boolean) (callback-query-id string) (text (or string null) nil) (show-alert boolean nil) (url (or string null) nil) (cache-time (or integer null) nil))