1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
decryptedDataBlock | Decrypted data block | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: decryptedDataBlock
Decrypted data block
Attributes:
Name | Type | Required | Description |
---|---|---|---|
voice_call_id | int128 | Optional | Voice call ID |
in_seq_no | int | Optional | In seq no |
out_seq_no | int | Optional | Out seq no |
recent_received_mask | int | Optional | Recent received mask |
proto | int | Optional | Proto |
extra | string | Optional | Extra |
raw_data | string | Optional | Raw data |
Type: DecryptedDataBlock
Example:
$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'];
Or, if you're into Lua:
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'}