;; SPDX-License-Identifier: EUPL-1.2 ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs (defpackage :ukkoclot/src/tg/reaction-type-custom-emoji (:documentation "ReactionTypeCustomEmoji Telegram type") (:use :c2cl :ukkoclot/src/enum :ukkoclot/src/tg/type-macros) (:export #:custom-emoji-type #:reaction-type-custom-emoji-type #:reaction-type-custom-emoji #:make-reaction-type-custom-emoji #:reaction-type-custom-emoji-p #:copy-reaction-type-custom-emoji #:reaction-type-custom-emoji-custom-emoji-id)) (in-package :ukkoclot/src/tg/reaction-type-custom-emoji) (define-enum reaction-type-custom-emoji-type (custom-emoji-type "custom_emoji")) (define-tg-type reaction-type-custom-emoji (type reaction-type-custom-emoji-type) (custom-emoji-id string))