1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 19:16:57 +01:00
MadelineProto/docs/TD_docs/constructors/inlineQueryResultAnimation.md
2017-07-23 16:11:02 +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, }