MadelineProto/old_docs/API_docs_v70/constructors/inputPhoneCall.md

44 lines
739 B
Markdown
Raw Normal View History

---
title: inputPhoneCall
description: inputPhoneCall attributes, type and example
---
## Constructor: inputPhoneCall
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|id|[long](../types/long.md) | Yes|
|access\_hash|[long](../types/long.md) | Yes|
### Type: [InputPhoneCall](../types/InputPhoneCall.md)
### Example:
```
$inputPhoneCall = ['_' => 'inputPhoneCall', 'id' => long, 'access_hash' => long];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputPhoneCall", "id": long, "access_hash": long}
```
Or, if you're into Lua:
```
inputPhoneCall={_='inputPhoneCall', id=long, access_hash=long}
```