blob: badd8a45ef055c903389424acc8b23e396e3a16b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;; SPDX-License-Identifier: EUPL-1.2
;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com>
(defpackage :ukkoclot/tg/answer-callback-query
(:use :c2cl :ukkoclot/bot/method-macros)
(:export :answer-callback-query))
(in-package :ukkoclot/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))
|