1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-12 16:07:21 +01:00
MadelineProto/docs/API_docs/constructors/inputPhoneCall.md
2017-07-23 16:11:02 +02:00

742 B

title description
inputPhoneCall inputPhoneCall attributes, type and example

Constructor: inputPhoneCall

Back to constructors index

Attributes:

Name Type Required
id long Yes
access_hash long Yes

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, }