2017-08-21 18:22:02 +02:00
|
|
|
---
|
|
|
|
title: help.configSimple
|
|
|
|
description: help_configSimple attributes, type and example
|
|
|
|
---
|
|
|
|
## 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|
|
2017-09-29 15:50:59 +02:00
|
|
|
|ip\_port\_list|Array of [ipPort](../constructors/ipPort.md) | Yes|
|
2017-08-21 18:22:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [help\_ConfigSimple](../types/help_ConfigSimple.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$help_configSimple = ['_' => 'help.configSimple', 'date' => int, 'expires' => int, 'dc_id' => int, 'ip_port_list' => [ipPort]];
|
|
|
|
```
|
|
|
|
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_": "help.configSimple", "date": int, "expires": int, "dc_id": int, "ip_port_list": [ipPort]}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
help_configSimple={_='help.configSimple', date=int, expires=int, dc_id=int, ip_port_list={ipPort}}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|