MadelineProtoDocs/docs/API_docs/constructors/ipPortSecret.md

886 B

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

Constructor: ipPortSecret

Back to constructors index

Attributes:

Name Type Required
ipv4 int Yes
port int Yes
secret bytes Yes

Type: IpPort

Example:

$ipPortSecret = ['_' => 'ipPortSecret', 'ipv4' => int, 'port' => int, 'secret' => 'bytes'];

PWRTelegram json-encoded version:

{"_": "ipPortSecret", "ipv4": int, "port": int, "secret": {"_": "bytes", "bytes":"base64 encoded bytes"}}

Or, if you're into Lua:

ipPortSecret={_='ipPortSecret', ipv4=int, port=int, secret='bytes'}