45 lines
719 B
Markdown
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}
|
||
|
|
||
|
```
|
||
|
|
||
|
|