MadelineProtoDocs/docs/API_docs/constructors/updateBotCallbackQuery.md

45 lines
1.6 KiB
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: updateBotCallbackQuery
2019-12-27 17:48:04 +01:00
description: A callback button was pressed, and the button data was sent to the bot that created the button
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:19:25 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: updateBotCallbackQuery
2018-04-01 13:19:25 +02:00
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
A callback button was pressed, and the button data was sent to the bot that created the button
2018-12-26 02:56:50 +01:00
2018-04-01 13:19:25 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|query\_id|[long](../types/long.md) | Yes|Query ID|
2019-12-27 17:48:04 +01:00
|user\_id|[int](../types/int.md) | Yes|ID of the user that pressed the button|
|peer|[Peer](../types/Peer.md) | Yes|Chat where the inline keyboard was sent|
|msg\_id|[int](../types/int.md) | Yes|Message ID|
|chat\_instance|[long](../types/long.md) | Yes|Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.|
|data|[bytes](../types/bytes.md) | Optional|Callback data|
|game\_short\_name|[string](../types/string.md) | Optional|Short name of a Game to be returned, serves as the unique identifier for the game|
2018-04-01 13:19:25 +02:00
### Type: [Update](../types/Update.md)
### Example:
```php
2018-04-01 13:19:25 +02:00
$updateBotCallbackQuery = ['_' => 'updateBotCallbackQuery', 'query_id' => long, 'user_id' => int, 'peer' => Peer, 'msg_id' => int, 'chat_instance' => long, 'data' => 'bytes', 'game_short_name' => 'string'];
```
Or, if you're into Lua:
2018-04-01 13:19:25 +02:00
```lua
2018-04-01 13:19:25 +02:00
updateBotCallbackQuery={_='updateBotCallbackQuery', query_id=long, user_id=int, peer=Peer, msg_id=int, chat_instance=long, data='bytes', game_short_name='string'}
```