--- title: botInlineResult description: Generic result image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: botInlineResult [Back to constructors index](index.md) Generic result ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |id|[string](../types/string.md) | Yes|Result ID| |type|[string](../types/string.md) | Yes|Result type (see [bot API docs](https://core.telegram.org/bots/api#inlinequeryresult))| |title|[string](../types/string.md) | Optional|Result title| |description|[string](../types/string.md) | Optional|Result description| |url|[string](../types/string.md) | Optional|URL of article or webpage| |thumb\_url|[string](../types/string.md) | Optional|Thumbnail URL| |content\_url|[string](../types/string.md) | Optional|Content URL| |content\_type|[string](../types/string.md) | Optional|Content type| |w|[int](../types/int.md) | Optional|Width| |h|[int](../types/int.md) | Optional|Height| |duration|[int](../types/int.md) | Optional|Duration| |send\_message|[BotInlineMessage](../types/BotInlineMessage.md) | Yes|Message to send| ### Type: [BotInlineResult](../types/BotInlineResult.md) ### Example: ```php $botInlineResult = ['_' => 'botInlineResult', 'id' => 'string', 'type' => 'string', 'title' => 'string', 'description' => 'string', 'url' => 'string', 'thumb_url' => 'string', 'content_url' => 'string', 'content_type' => 'string', 'w' => int, 'h' => int, 'duration' => int, 'send_message' => BotInlineMessage]; ``` Or, if you're into Lua: ```lua botInlineResult={_='botInlineResult', id='string', type='string', title='string', description='string', url='string', thumb_url='string', content_url='string', content_type='string', w=int, h=int, duration=int, send_message=BotInlineMessage} ```