Layer 227
constructor
updateGroupCallParticipants#f2ebdb4e call:InputGroupCall participants:Vector<GroupCallParticipant> version:int = Update;

Parameters

Name Type Description
Call InputGroupCall Group call whose participants changed
Participants Vector < GroupCallParticipant > Participants whose state changed
Version int Group call revision used by the update application rules

Returns

Update

Gogram Example

// Creating UpdateGroupCallParticipants constructor
obj := &tg.UpdateGroupCallParticipants{
    Call: &tg.InputGroupCall{},
    Participants: &tg.VectorGroupCallParticipant{},
    Version: 42,
}