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

908 B

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

Constructor: phone.phoneCall

Back to constructors index

Phone call

Attributes:

Name Type Required Description
phone_call PhoneCall Optional Phone call
users Array of User Yes Users

Type: phone_PhoneCall

Example:

$phone_phoneCall = ['_' => 'phone.phoneCall', 'phone_call' => PhoneCall, 'users' => [User, User]];

PWRTelegram json-encoded version:

{"_": "phone.phoneCall", "phone_call": PhoneCall, "users": [User]}

Or, if you're into Lua:

phone_phoneCall={_='phone.phoneCall', phone_call=PhoneCall, users={User}}