MadelineProto/docs/API_docs/constructors/botInlineMediaResult.md

1.1 KiB

title description
botInlineMediaResult botInlineMediaResult attributes, type and example

Constructor: botInlineMediaResult

Back to constructors index

Attributes:

Name Type Required
id string Yes
type string Yes
photo Photo Optional
document Document Optional
title string Optional
description string Optional
send_message BotInlineMessage Yes

Type: BotInlineResult

Example:

$botInlineMediaResult = ['_' => 'botInlineMediaResult', 'id' => string, 'type' => string, 'photo' => Photo, 'document' => Document, 'title' => string, 'description' => string, 'send_message' => BotInlineMessage, ];

Or, if you're into Lua:

botInlineMediaResult={_='botInlineMediaResult', id=string, type=string, photo=Photo, document=Document, title=string, description=string, send_message=BotInlineMessage, }