2016-12-30 16:32:25 +01:00
|
|
|
---
|
|
|
|
title: p_q_inner_data
|
|
|
|
description: p_q_inner_data attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: p\_q\_inner\_data
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-03-11 19:54:51 +01:00
|
|
|
|pq|[bytes](../types/bytes.md) | Yes|
|
|
|
|
|p|[bytes](../types/bytes.md) | Yes|
|
|
|
|
|q|[bytes](../types/bytes.md) | Yes|
|
|
|
|
|nonce|[int128](../types/int128.md) | Yes|
|
|
|
|
|server\_nonce|[int128](../types/int128.md) | Yes|
|
|
|
|
|new\_nonce|[int256](../types/int256.md) | Yes|
|
2016-12-30 16:32:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [P\_Q\_inner\_data](../types/P_Q_inner_data.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
$p_q_inner_data = ['_' => 'p_q_inner_data', 'pq' => 'bytes', 'p' => 'bytes', 'q' => 'bytes', 'nonce' => int128, 'server_nonce' => int128, 'new_nonce' => int256];
|
Added docs for layer 18, 23, 25, 27, 33, 38, 40, 41, 42, 44, 45, 46, 51, 53, 55
2017-01-02 21:04:36 +01:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "p_q_inner_data", "pq": "bytes", "p": "bytes", "q": "bytes", "nonce": int128, "server_nonce": int128, "new_nonce": int256}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
p_q_inner_data={_='p_q_inner_data', pq='bytes', p='bytes', q='bytes', nonce=int128, server_nonce=int128, new_nonce=int256}
|
2017-03-11 19:54:51 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|