MadelineProtoDocs/docs/API_docs/constructors/accessPointRule.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

986 B

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

Constructor: accessPointRule

Back to constructors index

Attributes:

Name Type Required
phone_prefix_rules string Yes
dc_id int Yes
ips Array of IpPort Yes

Type: AccessPointRule

Example:

$accessPointRule = ['_' => 'accessPointRule', 'phone_prefix_rules' => 'string', 'dc_id' => int, 'ips' => [IpPort, IpPort]];

PWRTelegram json-encoded version:

{"_": "accessPointRule", "phone_prefix_rules": "string", "dc_id": int, "ips": [IpPort]}

Or, if you're into Lua:

accessPointRule={_='accessPointRule', phone_prefix_rules='string', dc_id=int, ips={IpPort}}