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