MadelineProto/docs/TD_docs/constructors/messageAnimation.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

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