MadelineProtoDocs/old_docs/API_docs_v0/constructors/config.md
2020-06-16 17:50:25 +02:00

1.2 KiB

title description image
config Current configuration https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: config

Back to constructors index

Current configuration

Attributes:

Name Type Required Description
date int Yes Current date at the server
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
broadcast_size_max int Yes

Type: Config

Example:

$config = ['_' => 'config', 'date' => int, 'test_mode' => Bool, 'this_dc' => int, 'dc_options' => [DcOption, DcOption], 'chat_size_max' => int, 'broadcast_size_max' => int];

Or, if you're into Lua:

config={_='config', date=int, test_mode=Bool, this_dc=int, dc_options={DcOption}, chat_size_max=int, broadcast_size_max=int}