2017-06-30 15:36:33 +02:00
|
|
|
---
|
|
|
|
title: updateBotInlineSend
|
|
|
|
description: updateBotInlineSend attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: updateBotInlineSend
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
|
|
|
|user\_id|[int](../types/int.md) | Yes|
|
|
|
|
|query|[string](../types/string.md) | Yes|
|
|
|
|
|geo|[GeoPoint](../types/GeoPoint.md) | Optional|
|
|
|
|
|id|[string](../types/string.md) | Yes|
|
|
|
|
|msg\_id|[InputBotInlineMessageID](../types/InputBotInlineMessageID.md) | Optional|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [Update](../types/Update.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$updateBotInlineSend = ['_' => 'updateBotInlineSend', 'user_id' => int, 'query' => string, 'geo' => GeoPoint, 'id' => string, 'msg_id' => InputBotInlineMessageID, ];
|
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_":"updateBotInlineSend","user_id":"int","query":"string","geo":"GeoPoint","id":"string","msg_id":"InputBotInlineMessageID"}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-06-30 15:36:33 +02:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
updateBotInlineSend={_='updateBotInlineSend', user_id=int, query=string, geo=GeoPoint, id=string, msg_id=InputBotInlineMessageID, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|