1.4 KiB
1.4 KiB
title | description | image |
---|---|---|
keyboardButtonSwitchInline | Button to force a user to switch to inline mode Pressing the button will prompt the user to select one of their chats, open that chat and insert the bot‘s username and the specified inline query in the input field. | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: keyboardButtonSwitchInline
Button to force a user to switch to inline mode Pressing the button will prompt the user to select one of their chats, open that chat and insert the bot‘s username and the specified inline query in the input field.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
same_peer | Bool | Optional | If set, pressing the button will insert the bot‘s username and the specified inline query in the current chat's input field. |
text | string | Yes | Button label |
query | string | Yes | The inline query to use |
Type: KeyboardButton
Example:
$keyboardButtonSwitchInline = ['_' => 'keyboardButtonSwitchInline', 'same_peer' => Bool, 'text' => 'string', 'query' => 'string'];
Or, if you're into Lua:
keyboardButtonSwitchInline={_='keyboardButtonSwitchInline', same_peer=Bool, text='string', query='string'}