2019-09-13 17:13:55 +02:00
|
|
|
---
|
|
|
|
title: phoneConnection
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Identifies an endpoint that can be used to connect to the other user in a phone call
|
2019-09-13 17:13:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: phoneConnection
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Identifies an endpoint that can be used to connect to the other user in a phone call
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|id|[long](../types/long.md) | Yes|Endpoint ID|
|
|
|
|
|ip|[string](../types/string.md) | Yes|IP address of endpoint|
|
|
|
|
|ipv6|[string](../types/string.md) | Yes|IPv6 address of endpoint|
|
|
|
|
|port|[int](../types/int.md) | Yes|Port ID|
|
|
|
|
|peer\_tag|[bytes](../types/bytes.md) | Yes|Our peer tag|
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [PhoneConnection](../types/PhoneConnection.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$phoneConnection = ['_' => 'phoneConnection', 'id' => long, 'ip' => 'string', 'ipv6' => 'string', 'port' => int, 'peer_tag' => 'bytes'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
phoneConnection={_='phoneConnection', id=long, ip='string', ipv6='string', port=int, peer_tag='bytes'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|