Link Search Menu Expand Document

Constructor: messageActionConferenceCall

Back to constructors index

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:

NameTypeRequiredDescription
missedBoolOptionalWhether the conference call has ended and the user hasn’t joined.
activeBoolOptionalWhether the user is currently in the conference call.
videoBoolOptionalWhether this is a video conference call.
call_idlongYesCall ID.
durationintOptionalCall duration, for left calls only.
other_participantsArray of PeerOptionalIdentifiers 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]];