44 lines
785 B
Markdown
44 lines
785 B
Markdown
|
---
|
||
|
title: inputMediaVideo
|
||
|
description: inputMediaVideo attributes, type and example
|
||
|
---
|
||
|
## Constructor: inputMediaVideo
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|---------------|----------|
|
||
|
|video|[InputVideo](../types/InputVideo.md) | Optional|
|
||
|
|caption|[string](../types/string.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [InputMedia](../types/InputMedia.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$inputMediaVideo = ['_' => 'inputMediaVideo', 'video' => InputVideo, 'caption' => 'string'];
|
||
|
```
|
||
|
|
||
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
||
|
|
||
|
```
|
||
|
{"_": "inputMediaVideo", "video": InputVideo, "caption": "string"}
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
inputMediaVideo={_='inputMediaVideo', video=InputVideo, caption='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|