MadelineProtoDocs/old_docs/API_docs_v46/constructors/botInlineMediaResultPhoto.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.2 KiB

title description image
botInlineMediaResultPhoto Bot inline media result photo https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: botInlineMediaResultPhoto

Back to constructors index

Bot inline media result photo

Attributes:

Name Type Required Description
id string Yes ID
type string Yes Type
photo Photo Optional Photo
send_message BotInlineMessage Yes Send message

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}