MadelineProtoDocs/old_docs/API_docs_v71/constructors/phoneConnection.md

43 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2018-04-01 13:19:25 +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
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:19:25 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: phoneConnection
2018-04-01 13:19:25 +02:00
[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
2018-12-26 02:56:50 +01:00
2018-04-01 13:19:25 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| 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|
2018-04-01 13:19:25 +02:00
### Type: [PhoneConnection](../types/PhoneConnection.md)
### Example:
```php
2018-04-01 13:19:25 +02:00
$phoneConnection = ['_' => 'phoneConnection', 'id' => long, 'ip' => 'string', 'ipv6' => 'string', 'port' => int, 'peer_tag' => 'bytes'];
```
Or, if you're into Lua:
2018-04-01 13:19:25 +02:00
```lua
2018-04-01 13:19:25 +02:00
phoneConnection={_='phoneConnection', id=long, ip='string', ipv6='string', port=int, peer_tag='bytes'}
```