MadelineProto/docs/TD_docs/constructors/inlineKeyboardButtonTypeSwitchInline.md

46 lines
1.2 KiB
Markdown
Raw Normal View History

---
title: inlineKeyboardButtonTypeSwitchInline
description: A button which forces inline query to the bot to be substitued in the input field
---
## Constructor: inlineKeyboardButtonTypeSwitchInline
[Back to constructors index](index.md)
A button which forces inline query to the bot to be substitued in the input field
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|query|[string](../types/string.md) | Yes|Inline query to be sent to the bot|
|in\_current\_chat|[Bool](../types/Bool.md) | Yes|True, if the inline query should be sent from the current chat|
### Type: [InlineKeyboardButtonType](../types/InlineKeyboardButtonType.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$inlineKeyboardButtonTypeSwitchInline = ['_' => 'inlineKeyboardButtonTypeSwitchInline', 'query' => 'string', 'in_current_chat' => Bool];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "inlineKeyboardButtonTypeSwitchInline", "query": "string", "in_current_chat": Bool}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
inlineKeyboardButtonTypeSwitchInline={_='inlineKeyboardButtonTypeSwitchInline', query='string', in_current_chat=Bool}
```