3.6 KiB
3.6 KiB
title | description | image |
---|---|---|
config | Current configuration | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: config
Current configuration
Attributes:
Name | Type | Required | Description |
---|---|---|---|
date | int | Yes | Current date at the server |
expires | int | Yes | Expiration date of this config: when it expires it'll have to be refetched using help.getConfig |
test_mode | Bool | Yes | Whether we're connected to the test DCs |
this_dc | int | Yes | ID of the DC that returned the reply |
dc_options | Array of DcOption | Yes | DC IP list |
chat_size_max | int | Yes | Maximum member count for normal groups |
megagroup_size_max | int | Yes | Maximum member count for supergroups |
forwarded_count_max | int | Yes | Maximum number of messages that can be forwarded at once using messages.forwardMessages. |
online_update_period_ms | int | Yes | The client should update its online status every N milliseconds |
offline_blur_timeout_ms | int | Yes | Delay before offline status needs to be sent to the server |
offline_idle_timeout_ms | int | Yes | Time without any user activity after which it should be treated offline |
online_cloud_timeout_ms | int | Yes | If we are offline, but were online from some other client in last online_cloud_timeout_ms milliseconds after we had gone offline, then delay offline notification for notify_cloud_delay_ms milliseconds. |
notify_cloud_delay_ms | int | Yes | If we are offline, but online from some other client then delay sending the offline notification for notify_cloud_delay_ms milliseconds. |
notify_default_delay_ms | int | Yes | If some other client is online, then delay notification for notification_default_delay_ms milliseconds |
chat_big_size | int | Yes | |
push_chat_period_ms | int | Yes | Not for client use |
push_chat_limit | int | Yes | Not for client use |
disabled_features | Array of DisabledFeature | Yes |
Type: Config
Example:
$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, 'disabled_features' => [DisabledFeature, DisabledFeature]];
Or, if you're into Lua:
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, disabled_features={DisabledFeature}}