MadelineProto/docs/TD_docs/constructors/inlineQueryResultAnimation.md
2017-07-23 16:33:46 +02:00

1.1 KiB

title description
inlineQueryResultAnimation Represents an animation cached on the telegram server

Constructor: inlineQueryResultAnimation

Back to constructors index

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'}