MadelineProto/old_docs/API_docs_v27/constructors/inputMediaVideo.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

43 lines
661 B
Markdown

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