mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 10:47:54 +01:00
26 lines
534 B
Markdown
26 lines
534 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) | Required|
|
||
|
|caption|[string](../types/string.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [InputMedia](../types/InputMedia.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$inputMediaVideo = ['_' => 'inputMediaVideo', 'video' => InputVideo, 'caption' => string, ];
|
||
|
```
|