2017-03-11 19:54:51 +01:00
|
|
|
---
|
2017-05-28 04:49:19 +02:00
|
|
|
title: decryptedMessageMediaVideo
|
|
|
|
description: decryptedMessageMediaVideo attributes, type and example
|
2017-03-11 19:54:51 +01:00
|
|
|
---
|
2017-05-28 04:49:19 +02:00
|
|
|
## Constructor: decryptedMessageMediaVideo\_8
|
2017-03-11 19:54:51 +01:00
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-03-11 19:54:51 +01:00
|
|
|
|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-07-23 16:33:46 +02:00
|
|
|
$decryptedMessageMediaVideo_8 = ['_' => 'decryptedMessageMediaVideo', 'thumb' => 'bytes', 'thumb_w' => int, 'thumb_h' => int, 'duration' => int, 'w' => int, 'h' => int, 'size' => int, 'key' => 'bytes', 'iv' => 'bytes'];
|
2017-03-11 19:54:51 +01:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "decryptedMessageMediaVideo", "thumb": "bytes", "thumb_w": int, "thumb_h": int, "duration": int, "w": int, "h": int, "size": int, "key": "bytes", "iv": "bytes"}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
decryptedMessageMediaVideo_8={_='decryptedMessageMediaVideo', thumb='bytes', thumb_w=int, thumb_h=int, duration=int, w=int, h=int, size=int, key='bytes', iv='bytes'}
|
2017-03-11 19:54:51 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|