MadelineProtoDocs/old_docs/API_docs_v10/constructors/updateBotInlineSend.md

1.4 KiB

title description image
updateBotInlineSend The result of an inline query that was chosen by a user and sent to their chat partner. Please see our documentation on the [feedback collecting](https://core.telegram.org/bots/inline#collecting-feedback) for details on how to enable these updates for your bot. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateBotInlineSend

Back to constructors index

The result of an inline query that was chosen by a user and sent to their chat partner. Please see our documentation on the feedback collecting for details on how to enable these updates for your bot.

Attributes:

Name Type Required Description
user_id int Yes The user that chose the result
query string Yes The query that was used to obtain the result
id string Yes The unique identifier for the result that was chosen

Type: Update

Example:

$updateBotInlineSend = ['_' => 'updateBotInlineSend', 'user_id' => int, 'query' => 'string', 'id' => 'string'];

Or, if you're into Lua:

updateBotInlineSend={_='updateBotInlineSend', user_id=int, query='string', id='string'}