41 lines
952 B
Markdown
41 lines
952 B
Markdown
|
---
|
||
|
title: help.configSimple
|
||
|
description: help.configSimple attributes, type and example
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
redirect_from: /API_docs/constructors/help_configSimple.html
|
||
|
---
|
||
|
# Constructor: help.configSimple
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|---------------|----------|
|
||
|
|date|[int](../types/int.md) | Yes|
|
||
|
|expires|[int](../types/int.md) | Yes|
|
||
|
|dc\_id|[int](../types/int.md) | Yes|
|
||
|
|ip\_port\_list|Array of [ipPort](../constructors/ipPort.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [help.ConfigSimple](../types/help.ConfigSimple.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$help.configSimple = ['_' => 'help.configSimple', 'date' => int, 'expires' => int, 'dc_id' => int, 'ip_port_list' => [ipPort, ipPort]];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
help.configSimple={_='help.configSimple', date=int, expires=int, dc_id=int, ip_port_list={ipPort}}
|
||
|
|
||
|
```
|
||
|
|
||
|
|