MadelineProto/docs/TD_docs/constructors/messageAnimation.md

46 lines
860 B
Markdown
Raw Normal View History

---
title: messageAnimation
description: Animation message
---
## Constructor: messageAnimation
[Back to constructors index](index.md)
Animation message
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|animation|[animation](../types/animation.md) | Yes|Message content|
|caption|[string](../types/string.md) | Yes|Animation caption|
### Type: [MessageContent](../types/MessageContent.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$messageAnimation = ['_' => 'messageAnimation', 'animation' => animation, 'caption' => 'string'];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "messageAnimation", "animation": animation, "caption": "string"}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
messageAnimation={_='messageAnimation', animation=animation, caption='string'}
```