blob: 875ff251679fc4779ae82d6a0d9c691bfe3d6e14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
;; SPDX-License-Identifier: EUPL-1.2
;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com>
(defpackage :ukkoclot/tg-types/callback-query
(:use :c2cl :ukkoclot/tg-types/macros)
(:use
:ukkoclot/tg-types/message
:ukkoclot/tg-types/user)
(:export
#:callback-query
#:make-callback-query
#:callback-query-p
#:copy-callback-query
#:callback-query-id
#:callback-query-from
#:callback-query-message
#:callback-query-inline-message-id
#:callback-query-chat-instance
#:callback-query-data
#:callback-query-game-short-name))
(in-package :ukkoclot/tg-types/callback-query)
(define-tg-type callback-query
(id string)
(from user)
(message (or message null) nil)
(inline-message-id (or string null) nil)
(chat-instance string)
(data (or string null) nil)
(game-short-name (or string null) nil))
|