mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 16:07:21 +01:00
971 B
971 B
title | description |
---|---|
help.configSimple | help_configSimple attributes, type and example |
Constructor: help.configSimple
Attributes:
Name | Type | Required |
---|---|---|
date | int | Yes |
expires | int | Yes |
dc_id | int | Yes |
ip_port_list | Array of ipPort | Yes |
Type: help_ConfigSimple
Example:
$help_configSimple = ['_' => 'help.configSimple', 'date' => int, 'expires' => int, 'dc_id' => int, 'ip_port_list' => [ipPort], ];
PWRTelegram json-encoded version:
{"_":"help.configSimple","date":"int","expires":"int","dc_id":"int","ip_port_list":["ipPort"]}
Or, if you're into Lua:
help_configSimple={_='help.configSimple', date=int, expires=int, dc_id=int, ip_port_list={ipPort}, }