MadelineProto/old_docs/API_docs_v68/constructors/botInlineMediaResult.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.4 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];

PWRTelegram json-encoded version:

{"_": "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}