MadelineProtoDocs/old_docs/API_docs_v91/constructors/phone_phoneCall.md
2019-03-08 13:49:23 +01: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}}