1.0 KiB
1.0 KiB
title | description |
---|---|
inlineQueryResultDocument | Represents a document cached on the telegram server |
Constructor: inlineQueryResultDocument
Represents a document cached on the telegram server
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | string | Yes | Unique identifier of this result |
document | document | Yes | The document |
title | string | Yes | Document title |
description | string | Yes | Document description |
Type: InlineQueryResult
Example:
$inlineQueryResultDocument = ['_' => 'inlineQueryResultDocument', 'id' => string, 'document' => document, 'title' => string, 'description' => string, ];
Or, if you're into Lua:
inlineQueryResultDocument={_='inlineQueryResultDocument', id=string, document=document, title=string, description=string, }