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

837 B

title description image
inputPhoneCall Phone call https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputPhoneCall

Back to constructors index

Phone call

Attributes:

Name Type Required Description
id long Yes ID
access_hash long Yes Access hash

Type: InputPhoneCall

Example:

$inputPhoneCall = ['_' => 'inputPhoneCall', 'id' => long, 'access_hash' => long];

PWRTelegram json-encoded version:

{"_": "inputPhoneCall", "id": long, "access_hash": long}

Or, if you're into Lua:

inputPhoneCall={_='inputPhoneCall', id=long, access_hash=long}