1.1 KiB
1.1 KiB
title | description |
---|---|
botInlineMediaResultDocument | botInlineMediaResultDocument attributes, type and example |
Constructor: botInlineMediaResultDocument
Attributes:
Name | Type | Required |
---|---|---|
id | string | Yes |
type | string | Yes |
document | Document | Yes |
send_message | BotInlineMessage | Yes |
Type: BotInlineResult
Example:
$botInlineMediaResultDocument = ['_' => 'botInlineMediaResultDocument', 'id' => 'string', 'type' => 'string', 'document' => Document, 'send_message' => BotInlineMessage];
PWRTelegram json-encoded version:
{"_": "botInlineMediaResultDocument", "id": "string", "type": "string", "document": Document, "send_message": BotInlineMessage}
Or, if you're into Lua:
botInlineMediaResultDocument={_='botInlineMediaResultDocument', id='string', type='string', document=Document, send_message=BotInlineMessage}