1.3 KiB
1.3 KiB
title | description |
---|---|
phoneCallWaiting | phoneCallWaiting attributes, type and example |
Constructor: phoneCallWaiting
Attributes:
Name | Type | Required |
---|---|---|
id | long | Yes |
access_hash | long | Yes |
date | int | Yes |
admin_id | int | Yes |
participant_id | int | Yes |
protocol | PhoneCallProtocol | Yes |
receive_date | int | Optional |
Type: PhoneCall
Example:
$phoneCallWaiting = ['_' => 'phoneCallWaiting', 'id' => long, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'protocol' => PhoneCallProtocol, 'receive_date' => int];
PWRTelegram json-encoded version:
{"_": "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}