2017-03-11 19:54:51 +01:00
|
|
|
---
|
|
|
|
title: animation
|
|
|
|
description: Describes animation file. Animation should be encoded in gif or mp4 format
|
|
|
|
---
|
|
|
|
## Constructor: animation
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Describes animation file. Animation should be encoded in gif or mp4 format
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|-------------|
|
2017-03-11 19:54:51 +01:00
|
|
|
|width|[int](../types/int.md) | Yes|Width of the animation|
|
|
|
|
|height|[int](../types/int.md) | Yes|Height of the animation|
|
|
|
|
|file\_name|[string](../types/string.md) | Yes|Original name of a file as defined by sender|
|
|
|
|
|mime\_type|[string](../types/string.md) | Yes|MIME type of a file, usually "image/gif" or "video/mp4"|
|
|
|
|
|thumb|[photoSize](../types/photoSize.md) | Yes|Animation thumb, nullable|
|
|
|
|
|animation|[file](../types/file.md) | Yes|File with the animation|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [Animation](../types/Animation.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
$animation = ['_' => 'animation', 'width' => int, 'height' => int, 'file_name' => 'string', 'mime_type' => 'string', 'thumb' => photoSize, 'animation' => file];
|
2017-03-11 19:54:51 +01:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "animation", "width": int, "height": int, "file_name": "string", "mime_type": "string", "thumb": photoSize, "animation": file}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
animation={_='animation', width=int, height=int, file_name='string', mime_type='string', thumb=photoSize, animation=file}
|
2017-03-11 19:54:51 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|