--- title: config description: Current configuration image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: config [Back to constructors index](index.md) Current configuration ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |date|[int](../types/int.md) | Yes|Current date at the server| |expires|[int](../types/int.md) | Yes|Expiration date of this config: when it expires it'll have to be refetched using [help.getConfig](../methods/help.getConfig.md)| |test\_mode|[Bool](../types/Bool.md) | Yes|Whether we're connected to the test DCs| |this\_dc|[int](../types/int.md) | Yes|ID of the DC that returned the reply| |dc\_options|Array of [DcOption](../types/DcOption.md) | Yes|DC options| |chat\_big\_size|[int](../types/int.md) | Yes|Chat big size| |chat\_size\_max|[int](../types/int.md) | Yes|Maximum member count for normal [groups](https://core.telegram.org/api/channel)| |broadcast\_size\_max|[int](../types/int.md) | Yes|Broadcast size max| |disabled\_features|Array of [DisabledFeature](../types/DisabledFeature.md) | Yes|Disabled features| ### Type: [Config](../types/Config.md) ### Example: ```php $config = ['_' => 'config', 'date' => int, 'expires' => int, 'test_mode' => Bool, 'this_dc' => int, 'dc_options' => [DcOption, DcOption], 'chat_big_size' => int, 'chat_size_max' => int, 'broadcast_size_max' => int, 'disabled_features' => [DisabledFeature, DisabledFeature]]; ``` Or, if you're into Lua: ```lua config={_='config', date=int, expires=int, test_mode=Bool, this_dc=int, dc_options={DcOption}, chat_big_size=int, chat_size_max=int, broadcast_size_max=int, disabled_features={DisabledFeature}} ```