2018-04-01 13:24:46 +02:00
|
|
|
---
|
|
|
|
title: config
|
2018-12-26 02:56:50 +01:00
|
|
|
description: Config
|
2018-04-04 19:52:48 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
2018-04-01 13:24:46 +02:00
|
|
|
---
|
2018-04-05 01:19:57 +02:00
|
|
|
# Constructor: config
|
2018-04-01 13:24:46 +02:00
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-12-26 02:56:50 +01:00
|
|
|
Config
|
|
|
|
|
2018-04-01 13:24:46 +02:00
|
|
|
### Attributes:
|
|
|
|
|
2018-12-26 02:56:50 +01:00
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|date|[int](../types/int.md) | Yes|Date|
|
|
|
|
|expires|[int](../types/int.md) | Yes|Expires|
|
|
|
|
|test\_mode|[Bool](../types/Bool.md) | Yes|Test mode?|
|
|
|
|
|this\_dc|[int](../types/int.md) | Yes|This DC|
|
|
|
|
|dc\_options|Array of [DcOption](../types/DcOption.md) | Yes|DC options|
|
|
|
|
|chat\_size\_max|[int](../types/int.md) | Yes|Chat size max|
|
|
|
|
|megagroup\_size\_max|[int](../types/int.md) | Yes|Megagroup size max|
|
|
|
|
|forwarded\_count\_max|[int](../types/int.md) | Yes|Forwarded count max|
|
|
|
|
|online\_update\_period\_ms|[int](../types/int.md) | Yes|Online update period ms|
|
|
|
|
|offline\_blur\_timeout\_ms|[int](../types/int.md) | Yes|Offline blur timeout ms|
|
|
|
|
|offline\_idle\_timeout\_ms|[int](../types/int.md) | Yes|Offline IDle timeout ms|
|
|
|
|
|online\_cloud\_timeout\_ms|[int](../types/int.md) | Yes|Online cloud timeout ms|
|
|
|
|
|notify\_cloud\_delay\_ms|[int](../types/int.md) | Yes|Notify cloud delay ms|
|
|
|
|
|notify\_default\_delay\_ms|[int](../types/int.md) | Yes|Notify default delay ms|
|
|
|
|
|chat\_big\_size|[int](../types/int.md) | Yes|Chat big size|
|
|
|
|
|push\_chat\_period\_ms|[int](../types/int.md) | Yes|Push chat period ms|
|
|
|
|
|push\_chat\_limit|[int](../types/int.md) | Yes|Push chat limit|
|
|
|
|
|saved\_gifs\_limit|[int](../types/int.md) | Yes|Saved gifs limit|
|
|
|
|
|edit\_time\_limit|[int](../types/int.md) | Yes|Edit time limit|
|
|
|
|
|disabled\_features|Array of [DisabledFeature](../types/DisabledFeature.md) | Yes|Disabled features|
|
2018-04-01 13:24:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [Config](../types/Config.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```php
|
2018-04-01 13:24:46 +02:00
|
|
|
$config = ['_' => 'config', 'date' => int, 'expires' => int, 'test_mode' => Bool, 'this_dc' => int, 'dc_options' => [DcOption, DcOption], 'chat_size_max' => int, 'megagroup_size_max' => int, 'forwarded_count_max' => int, 'online_update_period_ms' => int, 'offline_blur_timeout_ms' => int, 'offline_idle_timeout_ms' => int, 'online_cloud_timeout_ms' => int, 'notify_cloud_delay_ms' => int, 'notify_default_delay_ms' => int, 'chat_big_size' => int, 'push_chat_period_ms' => int, 'push_chat_limit' => int, 'saved_gifs_limit' => int, 'edit_time_limit' => int, 'disabled_features' => [DisabledFeature, DisabledFeature]];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
Or, if you're into Lua:
|
2018-04-01 13:24:46 +02:00
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```lua
|
2018-04-01 13:24:46 +02:00
|
|
|
config={_='config', date=int, expires=int, test_mode=Bool, this_dc=int, dc_options={DcOption}, chat_size_max=int, megagroup_size_max=int, forwarded_count_max=int, online_update_period_ms=int, offline_blur_timeout_ms=int, offline_idle_timeout_ms=int, online_cloud_timeout_ms=int, notify_cloud_delay_ms=int, notify_default_delay_ms=int, chat_big_size=int, push_chat_period_ms=int, push_chat_limit=int, saved_gifs_limit=int, edit_time_limit=int, disabled_features={DisabledFeature}}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|