MadelineProtoDocs/old_docs/API_docs_v23/constructors/messageMediaVideo.md

43 lines
673 B
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
2018-04-01 13:24:46 +02:00
title: messageMediaVideo
description: messageMediaVideo attributes, type and example
2018-04-01 13:19:25 +02:00
---
2018-04-01 13:24:46 +02:00
## Constructor: messageMediaVideo
2018-04-01 13:19:25 +02:00
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
2018-04-01 13:24:46 +02:00
|video|[Video](../types/Video.md) | Optional|
2018-04-01 13:19:25 +02:00
### Type: [MessageMedia](../types/MessageMedia.md)
### Example:
```
2018-04-01 13:24:46 +02:00
$messageMediaVideo = ['_' => 'messageMediaVideo', 'video' => Video];
2018-04-01 13:19:25 +02:00
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2018-04-01 13:24:46 +02:00
{"_": "messageMediaVideo", "video": Video}
2018-04-01 13:19:25 +02:00
```
Or, if you're into Lua:
```
2018-04-01 13:24:46 +02:00
messageMediaVideo={_='messageMediaVideo', video=Video}
2018-04-01 13:19:25 +02:00
```