MadelineProtoDocs/old_docs/API_docs_v53/constructors/updateBotCallbackQuery.md

47 lines
1.0 KiB
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: updateBotCallbackQuery
description: updateBotCallbackQuery attributes, type and example
---
## Constructor: updateBotCallbackQuery
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|query\_id|[long](../types/long.md) | Yes|
|user\_id|[int](../types/int.md) | Yes|
|peer|[Peer](../types/Peer.md) | Yes|
|msg\_id|[int](../types/int.md) | Yes|
2018-04-01 13:24:46 +02:00
|data|[bytes](../types/bytes.md) | Yes|
2018-04-01 13:19:25 +02:00
### Type: [Update](../types/Update.md)
### Example:
```
2018-04-01 13:24:46 +02:00
$updateBotCallbackQuery = ['_' => 'updateBotCallbackQuery', 'query_id' => long, 'user_id' => int, 'peer' => Peer, 'msg_id' => int, 'data' => 'bytes'];
2018-04-01 13:19:25 +02:00
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2018-04-01 13:24:46 +02:00
{"_": "updateBotCallbackQuery", "query_id": long, "user_id": int, "peer": Peer, "msg_id": int, "data": "bytes"}
2018-04-01 13:19:25 +02:00
```
Or, if you're into Lua:
```
2018-04-01 13:24:46 +02:00
updateBotCallbackQuery={_='updateBotCallbackQuery', query_id=long, user_id=int, peer=Peer, msg_id=int, data='bytes'}
2018-04-01 13:19:25 +02:00
```