MadelineProto/docs/MTProto_docs/constructors/resPQ.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

968 B

title description
resPQ resPQ attributes, type and example

Constructor: resPQ

Back to constructors index

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}}