1.1 KiB
1.1 KiB
title | description |
---|---|
config | config attributes, type and example |
Constructor: config
Attributes:
Name | Type | Required |
---|---|---|
date | int | Yes |
test_mode | Bool | Yes |
this_dc | int | Yes |
dc_options | Array of DcOption | Yes |
chat_size_max | int | Yes |
broadcast_size_max | int | Yes |
Type: Config
Example:
$config = ['_' => 'config', 'date' => int, 'test_mode' => Bool, 'this_dc' => int, 'dc_options' => [DcOption], 'chat_size_max' => int, 'broadcast_size_max' => int];
PWRTelegram json-encoded version:
{"_": "config", "date": int, "test_mode": Bool, "this_dc": int, "dc_options": [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}