41 lines
854 B
Markdown
41 lines
854 B
Markdown
---
|
|
title: documentAttributeVideo
|
|
description: Document attribute video
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: documentAttributeVideo\_23
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Document attribute video
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|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_23 = ['_' => 'documentAttributeVideo', 'duration' => int, 'w' => int, 'h' => int];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
documentAttributeVideo_23={_='documentAttributeVideo', duration=int, w=int, h=int}
|
|
|
|
```
|
|
|
|
|