MadelineProtoDocs/docs/API_docs/constructors/phoneConnection.md
2018-04-19 17:56:40 +00:00

1.1 KiB

title description image
phoneConnection phoneConnection attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: phoneConnection

Back to constructors index

Attributes:

Name Type Required
id long Yes
ip string Yes
ipv6 string Yes
port int Yes
peer_tag bytes Yes

Type: PhoneConnection

Example:

$phoneConnection = ['_' => 'phoneConnection', 'id' => long, 'ip' => 'string', 'ipv6' => 'string', 'port' => int, 'peer_tag' => 'bytes'];

PWRTelegram json-encoded version:

{"_": "phoneConnection", "id": long, "ip": "string", "ipv6": "string", "port": int, "peer_tag": {"_": "bytes", "bytes":"base64 encoded bytes"}}

Or, if you're into Lua:

phoneConnection={_='phoneConnection', id=long, ip='string', ipv6='string', port=int, peer_tag='bytes'}