MadelineProtoDocs/old_docs/API_docs_v66/constructors/phoneCallDiscarded.md

1.3 KiB

title description image
phoneCallDiscarded Indicates a discarded phone call https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: phoneCallDiscarded

Back to constructors index

Indicates a discarded phone call

Attributes:

Name Type Required Description
need_rating Bool Optional Whether the server required the user to rate the call
need_debug Bool Optional Whether the server required the client to send the libtgvoip call debug data
id long Yes Call ID
reason PhoneCallDiscardReason Optional Why was the phone call discarded
duration int Optional Duration of the phone call in seconds

Type: PhoneCall

Example:

$phoneCallDiscarded = ['_' => 'phoneCallDiscarded', 'need_rating' => Bool, 'need_debug' => Bool, 'id' => long, 'reason' => PhoneCallDiscardReason, 'duration' => int];

Or, if you're into Lua:

phoneCallDiscarded={_='phoneCallDiscarded', need_rating=Bool, need_debug=Bool, id=long, reason=PhoneCallDiscardReason, duration=int}