1.4 KiB
1.4 KiB
title | description |
---|---|
decryptedDataBlock | decryptedDataBlock attributes, type and example |
Constructor: decryptedDataBlock
Attributes:
Name | Type | Required |
---|---|---|
voice_call_id | int128 | Optional |
in_seq_no | int | Optional |
out_seq_no | int | Optional |
recent_received_mask | int | Optional |
proto | int | Optional |
extra | string | Optional |
raw_data | string | Optional |
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'];
PWRTelegram 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:
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'}