1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 07:56:54 +01:00
MadelineProto/docs/TD_docs/constructors/messageAnimation.md
2017-07-23 16:11:02 +02:00

857 B

title description
messageAnimation Animation message

Constructor: messageAnimation

Back to constructors index

Animation message

Attributes:

Name Type Required Description
animation animation Yes Message content
caption string Yes Animation caption

Type: MessageContent

Example:

$messageAnimation = ['_' => 'messageAnimation', 'animation' => animation, 'caption' => string, ];

PWRTelegram json-encoded version:

{"_":"messageAnimation","animation":"animation","caption":"string"}

Or, if you're into Lua:

messageAnimation={_='messageAnimation', animation=animation, caption=string, }