41 lines
871 B
Markdown
41 lines
871 B
Markdown
|
---
|
||
|
title: help.configSimple
|
||
|
description: Config simple
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: help.configSimple
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Config simple
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|date|[int](../types/int.md) | Yes|Date|
|
||
|
|expires|[int](../types/int.md) | Yes|Expires|
|
||
|
|rules|Array of [AccessPointRule](../types/AccessPointRule.md) | Yes|Rules|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [help\_ConfigSimple](../types/help_ConfigSimple.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$help_configSimple = ['_' => 'help.configSimple', 'date' => int, 'expires' => int, 'rules' => [AccessPointRule, AccessPointRule]];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
help_configSimple={_='help.configSimple', date=int, expires=int, rules={AccessPointRule}}
|
||
|
|
||
|
```
|
||
|
|
||
|
|