MadelineProto/docs/TD_docs/constructors/inputMessageAnimation.md

49 lines
1.3 KiB
Markdown
Raw Normal View History

---
title: inputMessageAnimation
description: Animation message
---
## Constructor: inputMessageAnimation
[Back to constructors index](index.md)
Animation message
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|animation|[InputFile](../types/InputFile.md) | Yes|Animation file to send|
|thumb|[InputThumb](../types/InputThumb.md) | Yes|Animation thumb, if available|
|width|[int](../types/int.md) | Yes|Width of the animation, may be replaced by the server|
|height|[int](../types/int.md) | Yes|Height of the animation, may be replaced by the server|
|caption|[string](../types/string.md) | Yes|Animation caption, 0-200 characters|
### Type: [InputMessageContent](../types/InputMessageContent.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$inputMessageAnimation = ['_' => 'inputMessageAnimation', 'animation' => InputFile, 'thumb' => InputThumb, 'width' => int, 'height' => int, '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
{"_": "inputMessageAnimation", "animation": InputFile, "thumb": InputThumb, "width": int, "height": int, "caption": "string"}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
inputMessageAnimation={_='inputMessageAnimation', animation=InputFile, thumb=InputThumb, width=int, height=int, caption='string'}
```