1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
phoneCallWaiting | Incoming phone call | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: phoneCallWaiting
Incoming phone call
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | long | Yes | Call ID |
access_hash | long | Yes | Access hash |
date | int | Yes | Date |
admin_id | int | Yes | Admin ID |
participant_id | int | Yes | Participant ID |
protocol | PhoneCallProtocol | Yes | Phone call protocol info |
receive_date | int | Optional | When was the phone call received |
Type: PhoneCall
Example:
$phoneCallWaiting = ['_' => 'phoneCallWaiting', 'id' => long, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'protocol' => PhoneCallProtocol, 'receive_date' => int];
Or, if you're into Lua:
phoneCallWaiting={_='phoneCallWaiting', id=long, access_hash=long, date=int, admin_id=int, participant_id=int, protocol=PhoneCallProtocol, receive_date=int}