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

Parameters

Name Type Description
Call InputGroupCall Group call
Participants Vector<GroupCallParticipant> New participant list
Version int Version

Returns

Update

Gogram Example

// Creating UpdateGroupCallParticipants constructor
obj := &tg.UpdateGroupCallParticipants{
    Call: &tg.InputGroupCall{},
    Participants: []tg.GroupCallParticipant{&tg.GroupCallParticipant{}},
    Version: 0,
}