968 B
968 B
title | description |
---|---|
resPQ | resPQ attributes, type and example |
Constructor: resPQ
Attributes:
Name | Type | Required |
---|---|---|
nonce | int128 | Yes |
server_nonce | int128 | Yes |
pq | bytes | Yes |
server_public_key_fingerprints | Array of long | Yes |
Type: ResPQ
Example:
$resPQ = ['_' => 'resPQ', 'nonce' => int128, 'server_nonce' => int128, 'pq' => 'bytes', 'server_public_key_fingerprints' => [long]];
PWRTelegram json-encoded version:
{"_": "resPQ", "nonce": int128, "server_nonce": int128, "pq": "bytes", "server_public_key_fingerprints": [long]}
Or, if you're into Lua:
resPQ={_='resPQ', nonce=int128, server_nonce=int128, pq='bytes', server_public_key_fingerprints={long}}