MadelineProtoDocs/old_docs/API_docs_v105/constructors/help_configSimple.md

41 lines
871 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
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}}
```