Layer 227
constructor
messageActionConferenceCall#2ffe2f7a flags:# missed:flags.0?true active:flags.1?true video:flags.4?true call_id:long duration:flags.2?int other_participants:flags.3?Vector<Peer> = MessageAction;

Parameters

Name Type Description
Missed flags .0? true Whether the conference call has ended and the user hasn't joined.
Active flags .1? true Whether the user is currently in the conference call.
Video flags .4? true Whether this is a video conference call.
CallId long Call ID.
Duration flags .2? int Call duration, for left calls only.
OtherParticipants flags .3? Vector < Peer > Identifiers of some other call participants.

Returns

MessageAction

Gogram Example

// Creating MessageActionConferenceCall constructor
obj := &tg.MessageActionConferenceCall{
    Missed: nil,
    Active: nil,
    Video: nil,
    CallId: int64(1234567890),
    Duration: nil,
    OtherParticipants: nil,
}