--- title: inputBotInlineResult description: inputBotInlineResult attributes, type and example image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: inputBotInlineResult [Back to constructors index](index.md) ### Attributes: | Name | Type | Required | |----------|---------------|----------| |id|[string](../types/string.md) | Yes| |type|[string](../types/string.md) | Yes| |title|[string](../types/string.md) | Optional| |description|[string](../types/string.md) | Optional| |url|[string](../types/string.md) | Optional| |thumb|[InputWebDocument](../types/InputWebDocument.md) | Optional| |content|[InputWebDocument](../types/InputWebDocument.md) | Optional| |send\_message|[InputBotInlineMessage](../types/InputBotInlineMessage.md) | Yes| ### Type: [InputBotInlineResult](../types/InputBotInlineResult.md) ### Example: ``` $inputBotInlineResult = ['_' => 'inputBotInlineResult', 'id' => 'string', 'type' => 'string', 'title' => 'string', 'description' => 'string', 'url' => 'string', 'thumb' => InputWebDocument, 'content' => InputWebDocument, 'send_message' => InputBotInlineMessage]; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "inputBotInlineResult", "id": "string", "type": "string", "title": "string", "description": "string", "url": "string", "thumb": InputWebDocument, "content": InputWebDocument, "send_message": InputBotInlineMessage} ``` Or, if you're into Lua: ``` inputBotInlineResult={_='inputBotInlineResult', id='string', type='string', title='string', description='string', url='string', thumb=InputWebDocument, content=InputWebDocument, send_message=InputBotInlineMessage} ```