1.1 KiB
1.1 KiB
title | description |
---|---|
inlineQueryResultAnimation | Represents an animation cached on the telegram server |
Constructor: inlineQueryResultAnimation
Represents an animation cached on the telegram server
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | string | Yes | Unique identifier of this result |
animation | animation | Yes | The animation |
title | string | Yes | Animation title |
Type: InlineQueryResult
Example:
$inlineQueryResultAnimation = ['_' => 'inlineQueryResultAnimation', 'id' => 'string', 'animation' => animation, 'title' => 'string'];
PWRTelegram json-encoded version:
{"_": "inlineQueryResultAnimation", "id": "string", "animation": animation, "title": "string"}
Or, if you're into Lua:
inlineQueryResultAnimation={_='inlineQueryResultAnimation', id='string', animation=animation, title='string'}