MadelineProtoDocs/docs/API_docs/constructors/phoneCallAccepted.md

1.3 KiB

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

Constructor: phoneCallAccepted

Back to constructors index

Phone call accepted

Attributes:

Name Type Required Description
video Bool Optional Video call?
id long Yes ID
access_hash long Yes Access hash
date int Yes Date
admin_id int Yes Admin ID
participant_id int Yes Participant ID
g_b bytes Yes G b
protocol PhoneCallProtocol Yes Protocol

Type: PhoneCall

Example:

$phoneCallAccepted = ['_' => 'phoneCallAccepted', 'video' => Bool, 'id' => long, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'g_b' => 'bytes', 'protocol' => PhoneCallProtocol];

Or, if you're into Lua:

phoneCallAccepted={_='phoneCallAccepted', video=Bool, id=long, access_hash=long, date=int, admin_id=int, participant_id=int, g_b='bytes', protocol=PhoneCallProtocol}