MadelineProtoDocs/old_docs/API_docs_v66/constructors/phoneCallRequested.md

1.4 KiB

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

Constructor: phoneCallRequested

Back to constructors index

Requested phone call

Attributes:

Name Type Required Description
id long Yes Phone call ID
access_hash long Yes Access hash
date int Yes When was the phone call created
admin_id int Yes ID of the creator of the phone call
participant_id int Yes ID of the other participant of the phone call
g_a_hash bytes Yes Parameter for key exchange
protocol PhoneCallProtocol Yes Call protocol info to be passed to libtgvoip

Type: PhoneCall

Example:

$phoneCallRequested = ['_' => 'phoneCallRequested', 'id' => long, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'g_a_hash' => 'bytes', 'protocol' => PhoneCallProtocol];

Or, if you're into Lua:

phoneCallRequested={_='phoneCallRequested', id=long, access_hash=long, date=int, admin_id=int, participant_id=int, g_a_hash='bytes', protocol=PhoneCallProtocol}