MadelineProtoDocs/docs/MTProto_docs/constructors/p_q_inner_data_temp.md

45 lines
1.2 KiB
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: p_q_inner_data_temp
2018-12-26 02:56:50 +01:00
description: Inner data temp
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:19:25 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: p\_q\_inner\_data\_temp
2018-04-01 13:19:25 +02:00
[Back to constructors index](index.md)
2018-12-26 02:56:50 +01:00
Inner data temp
2018-04-01 13:19:25 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|pq|[bytes](../types/bytes.md) | Yes|Pq|
|p|[bytes](../types/bytes.md) | Yes|P|
|q|[bytes](../types/bytes.md) | Yes|Q|
|nonce|[int128](../types/int128.md) | Yes|Random number for cryptographic security|
|server\_nonce|[int128](../types/int128.md) | Yes|Random number for cryptographic security, given by server|
|new\_nonce|[int256](../types/int256.md) | Yes|New nonce|
|expires\_in|[int](../types/int.md) | Yes|Expires in|
2018-04-01 13:19:25 +02:00
### Type: [P\_Q\_inner\_data](../types/P_Q_inner_data.md)
### Example:
```php
2018-04-01 13:19:25 +02:00
$p_q_inner_data_temp = ['_' => 'p_q_inner_data_temp', 'pq' => 'bytes', 'p' => 'bytes', 'q' => 'bytes', 'nonce' => int128, 'server_nonce' => int128, 'new_nonce' => int256, 'expires_in' => int];
```
Or, if you're into Lua:
2018-04-01 13:19:25 +02:00
```lua
2018-04-01 13:19:25 +02:00
p_q_inner_data_temp={_='p_q_inner_data_temp', pq='bytes', p='bytes', q='bytes', nonce=int128, server_nonce=int128, new_nonce=int256, expires_in=int}
```