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