MadelineProtoDocs/docs/API_docs/constructors/phoneCallEmpty.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

45 lines
719 B
Markdown

---
title: phoneCallEmpty
description: Empty phone call
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: phoneCallEmpty
[Back to constructors index](index.md)
Empty phone call
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[long](../types/long.md) | Yes|ID|
### Type: [PhoneCall](../types/PhoneCall.md)
### Example:
```php
$phoneCallEmpty = ['_' => 'phoneCallEmpty', 'id' => long];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "phoneCallEmpty", "id": long}
```
Or, if you're into Lua:
```lua
phoneCallEmpty={_='phoneCallEmpty', id=long}
```