MadelineProto/old_docs/API_docs_v23/constructors/messageMediaVideo.md

43 lines
671 B
Markdown
Raw Normal View History

---
title: messageMediaVideo
description: messageMediaVideo attributes, type and example
---
## Constructor: messageMediaVideo
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|video|[Video](../types/Video.md) | Yes|
### Type: [MessageMedia](../types/MessageMedia.md)
### Example:
```
$messageMediaVideo = ['_' => 'messageMediaVideo', 'video' => Video, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"messageMediaVideo","video":"Video"}
```
Or, if you're into Lua:
```
messageMediaVideo={_='messageMediaVideo', video=Video, }
```