MadelineProtoDocs/docs/API_docs/constructors/decryptedDataBlock.md

49 lines
1.4 KiB
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: decryptedDataBlock
description: decryptedDataBlock attributes, type and example
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:19:25 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: decryptedDataBlock
2018-04-01 13:19:25 +02:00
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|voice\_call\_id|[int128](../types/int128.md) | Optional|
|in\_seq\_no|[int](../types/int.md) | Optional|
|out\_seq\_no|[int](../types/int.md) | Optional|
|recent\_received\_mask|[int](../types/int.md) | Optional|
|proto|[int](../types/int.md) | Optional|
|extra|[string](../types/string.md) | Optional|
|raw\_data|[string](../types/string.md) | Optional|
### Type: [DecryptedDataBlock](../types/DecryptedDataBlock.md)
### Example:
```php
2018-04-01 13:19:25 +02:00
$decryptedDataBlock = ['_' => 'decryptedDataBlock', 'voice_call_id' => int128, 'in_seq_no' => int, 'out_seq_no' => int, 'recent_received_mask' => int, 'proto' => int, 'extra' => 'string', 'raw_data' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "decryptedDataBlock", "voice_call_id": int128, "in_seq_no": int, "out_seq_no": int, "recent_received_mask": int, "proto": int, "extra": "string", "raw_data": "string"}
```
Or, if you're into Lua:
2018-04-01 13:19:25 +02:00
```lua
2018-04-01 13:19:25 +02:00
decryptedDataBlock={_='decryptedDataBlock', voice_call_id=int128, in_seq_no=int, out_seq_no=int, recent_received_mask=int, proto=int, extra='string', raw_data='string'}
```