2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: inputPhoneCall
|
|
|
|
description: Phone call
|
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: inputPhoneCall
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Phone call
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|id|[long](../types/long.md) | Yes|Call ID|
|
2019-03-29 21:12:30 +01:00
|
|
|
|access\_hash|[long](../types/long.md) | Yes|Access hash|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputPhoneCall](../types/InputPhoneCall.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$inputPhoneCall = ['_' => 'inputPhoneCall', 'id' => long, 'access_hash' => long];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
inputPhoneCall={_='inputPhoneCall', id=long, access_hash=long}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|