Constructor: messageActionConferenceCall
Represents a conference call (or an invitation to a conference call, if neither the missed
nor active
flags are set).
If call_requests_disabled is not set or false, an incoming messageActionConferenceCall with the missed
and active
flags not set should trigger ringing and an incoming call screen, just like for one-on-one calls.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
missed | Bool | Optional | Whether the conference call has ended and the user hasn’t joined. |
active | Bool | Optional | Whether the user is currently in the conference call. |
video | Bool | Optional | Whether this is a video conference call. |
call_id | long | Yes | Call ID. |
duration | int | Optional | Call duration, for left calls only. |
other_participants | Array of Peer | Optional | Identifiers of some other call participants. |
Type: MessageAction
Example:
$messageActionConferenceCall = ['_' => 'messageActionConferenceCall', 'missed' => Bool, 'active' => Bool, 'video' => Bool, 'call_id' => long, 'duration' => int, 'other_participants' => [Peer, Peer]];