vkteams-bot 0.11.5

High-performance VK Teams Bot API toolkit with CLI and MCP server support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(unused_parens)]
//! Answer callback query method `messages/answerCallbackQuery`
//! [More info](https://teams.vk.com/botapi/#/messages/get_messages_answerCallbackQuery)
use crate::prelude::*;
bot_api_method! {
    method = "messages/answerCallbackQuery",
    request = RequestMessagesAnswerCallbackQuery {
        required {
            query_id: QueryId,
        },
        optional {
            text: String,
            show_alert: bool,
            url: String,
        }
    },
    response = ResponseMessagesAnswerCallbackQuery {},
}