1.0 KiB
1.0 KiB
title | description | image |
---|---|---|
config | Config | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: config
Config
Attributes:
Name | Type | Required | Description |
---|---|---|---|
date | int | Yes | Date |
test_mode | Bool | Yes | Test mode? |
this_dc | int | Yes | This DC |
dc_options | Array of DcOption | Yes | DC options |
chat_size_max | int | Yes | Chat size max |
broadcast_size_max | int | Yes | Broadcast size max |
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}