44 lines
780 B
Markdown
44 lines
780 B
Markdown
|
---
|
||
|
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) | Optional|
|
||
|
|caption|[string](../types/string.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [MessageMedia](../types/MessageMedia.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$messageMediaVideo = ['_' => 'messageMediaVideo', 'video' => Video, 'caption' => 'string'];
|
||
|
```
|
||
|
|
||
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
||
|
|
||
|
```
|
||
|
{"_": "messageMediaVideo", "video": Video, "caption": "string"}
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
messageMediaVideo={_='messageMediaVideo', video=Video, caption='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|