MadelineProto/old_docs/API_docs_v65/constructors/phoneCallAccepted.md
2017-07-23 16:11:02 +02:00

1.2 KiB

title description
phoneCallAccepted phoneCallAccepted attributes, type and example

Constructor: phoneCallAccepted

Back to constructors index

Attributes:

Name Type Required
id long Yes
access_hash long Yes
date int Yes
admin_id int Yes
participant_id int Yes
g_b bytes Yes
protocol PhoneCallProtocol Yes

Type: PhoneCall

Example:

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

PWRTelegram json-encoded version:

{"_":"phoneCallAccepted","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', id=long, access_hash=long, date=int, admin_id=int, participant_id=int, g_b=bytes, protocol=PhoneCallProtocol, }