MadelineProtoDocs/docs/API_docs/constructors/documentAttributeVideo.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

49 lines
1.3 KiB
Markdown

---
title: documentAttributeVideo
description: Document attribute video
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: documentAttributeVideo
[Back to constructors index](index.md)
Document attribute video
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|round\_message|[Bool](../types/Bool.md) | Optional|Round message?|
|supports\_streaming|[Bool](../types/Bool.md) | Optional|Supports streaming?|
|duration|[int](../types/int.md) | Optional|Duration|
|w|[int](../types/int.md) | Optional|Width|
|h|[int](../types/int.md) | Optional|Height|
### Type: [DocumentAttribute](../types/DocumentAttribute.md)
### Example:
```php
$documentAttributeVideo = ['_' => 'documentAttributeVideo', 'round_message' => Bool, 'supports_streaming' => Bool, 'duration' => int, 'w' => int, 'h' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "documentAttributeVideo", "round_message": Bool, "supports_streaming": Bool, "duration": int, "w": int, "h": int}
```
Or, if you're into Lua:
```lua
documentAttributeVideo={_='documentAttributeVideo', round_message=Bool, supports_streaming=Bool, duration=int, w=int, h=int}
```