MadelineProto/docs/API_docs/constructors/phoneCallProtocol.md

46 lines
998 B
Markdown
Raw Normal View History

---
title: phoneCallProtocol
description: phoneCallProtocol attributes, type and example
---
## Constructor: phoneCallProtocol
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|
|udp\_p2p|[Bool](../types/Bool.md) | Optional|
|udp\_reflector|[Bool](../types/Bool.md) | Optional|
|min\_layer|[int](../types/int.md) | Yes|
|max\_layer|[int](../types/int.md) | Yes|
### Type: [PhoneCallProtocol](../types/PhoneCallProtocol.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$phoneCallProtocol = ['_' => 'phoneCallProtocol', 'udp_p2p' => Bool, 'udp_reflector' => Bool, 'min_layer' => int, 'max_layer' => int];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "phoneCallProtocol", "udp_p2p": Bool, "udp_reflector": Bool, "min_layer": int, "max_layer": int}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
phoneCallProtocol={_='phoneCallProtocol', udp_p2p=Bool, udp_reflector=Bool, min_layer=int, max_layer=int}
```