MadelineProto/old_docs/API_docs_v25/constructors/dcOption.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

871 B

title description
dcOption dcOption attributes, type and example

Constructor: dcOption

Back to constructors index

Attributes:

Name Type Required
id int Yes
hostname string Yes
ip_address string Yes
port int Yes

Type: DcOption

Example:

$dcOption = ['_' => 'dcOption', 'id' => int, 'hostname' => 'string', 'ip_address' => 'string', 'port' => int];

PWRTelegram json-encoded version:

{"_": "dcOption", "id": int, "hostname": "string", "ip_address": "string", "port": int}

Or, if you're into Lua:

dcOption={_='dcOption', id=int, hostname='string', ip_address='string', port=int}