39 lines
612 B
Markdown
39 lines
612 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];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
phoneCallEmpty={_='phoneCallEmpty', id=long}
|
|
|
|
```
|
|
|
|
|