MadelineProtoDocs/old_docs/API_docs_v30/constructors/accessPointRule.md

39 lines
827 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: accessPointRule
description: accessPointRule attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: accessPointRule
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|phone\_prefix\_rules|[string](../types/string.md) | Yes|
|dc\_id|[int](../types/int.md) | Yes|
|ips|Array of [IpPort](../types/IpPort.md) | Yes|
### Type: [AccessPointRule](../types/AccessPointRule.md)
### Example:
```php
$accessPointRule = ['_' => 'accessPointRule', 'phone_prefix_rules' => 'string', 'dc_id' => int, 'ips' => [IpPort, IpPort]];
```
Or, if you're into Lua:
```lua
accessPointRule={_='accessPointRule', phone_prefix_rules='string', dc_id=int, ips={IpPort}}
```