mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 21:07:47 +01:00
1.1 KiB
1.1 KiB
title | description |
---|---|
p_q_inner_data | p_q_inner_data attributes, type and example |
Constructor: p_q_inner_data
Attributes:
Name | Type | Required |
---|---|---|
pq | string | Yes |
p | string | Yes |
q | string | Yes |
nonce | int128 | Yes |
server_nonce | int128 | Yes |
new_nonce | int256 | Yes |
Type: P_Q_inner_data
Example:
$p_q_inner_data = ['_' => 'p_q_inner_data', 'pq' => string, 'p' => string, 'q' => string, 'nonce' => int128, 'server_nonce' => int128, 'new_nonce' => int256, ];
PWRTelegram json-encoded version:
{"_":"p_q_inner_data","pq":"string","p":"string","q":"string","nonce":"int128","server_nonce":"int128","new_nonce":"int256"}
Or, if you're into Lua:
p_q_inner_data={_='p_q_inner_data', pq=string, p=string, q=string, nonce=int128, server_nonce=int128, new_nonce=int256, }