4baac3178e
Add PHP, Lua language tag to Code area
889 B
889 B
title | description | image |
---|---|---|
ipPortSecret | ipPortSecret attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: ipPortSecret
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'}