MadelineProto/docs/API_docs/constructors/decryptedMessageMediaVideo8.md

44 lines
1.1 KiB
Markdown
Raw Normal View History

---
2017-05-27 23:21:14 +02:00
title: decryptedMessageMediaVideo8
description: decryptedMessageMediaVideo8 attributes, type and example
---
2017-05-27 23:21:14 +02:00
## Constructor: decryptedMessageMediaVideo8
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|thumb|[bytes](../types/bytes.md) | Yes|
|thumb\_w|[int](../types/int.md) | Yes|
|thumb\_h|[int](../types/int.md) | Yes|
|duration|[int](../types/int.md) | Yes|
|w|[int](../types/int.md) | Yes|
|h|[int](../types/int.md) | Yes|
|size|[int](../types/int.md) | Yes|
|key|[bytes](../types/bytes.md) | Yes|
|iv|[bytes](../types/bytes.md) | Yes|
### Type: [DecryptedMessageMedia](../types/DecryptedMessageMedia.md)
### Example:
```
2017-05-27 23:21:14 +02:00
$decryptedMessageMediaVideo8 = ['_' => 'decryptedMessageMediaVideo8', 'thumb' => bytes, 'thumb_w' => int, 'thumb_h' => int, 'duration' => int, 'w' => int, 'h' => int, 'size' => int, 'key' => bytes, 'iv' => bytes, ];
```
Or, if you're into Lua:
```
2017-05-27 23:21:14 +02:00
decryptedMessageMediaVideo8={_='decryptedMessageMediaVideo8', thumb=bytes, thumb_w=int, thumb_h=int, duration=int, w=int, h=int, size=int, key=bytes, iv=bytes, }
```