4baac3178e
Add PHP, Lua language tag to Code area
43 lines
892 B
Markdown
43 lines
892 B
Markdown
---
|
|
title: messages.dhConfigNotModified
|
|
description: messages_dhConfigNotModified attributes, type and example
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: messages.dhConfigNotModified
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|---------------|----------|
|
|
|random|[bytes](../types/bytes.md) | Yes|
|
|
|
|
|
|
|
|
### Type: [messages\_DhConfig](../types/messages_DhConfig.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$messages_dhConfigNotModified = ['_' => 'messages.dhConfigNotModified', 'random' => 'bytes'];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "messages.dhConfigNotModified", "random": {"_": "bytes", "bytes":"base64 encoded bytes"}}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
messages_dhConfigNotModified={_='messages.dhConfigNotModified', random='bytes'}
|
|
|
|
```
|
|
|
|
|