Layer 220
PhoneGroupCall
Contains info about a group call, and partial info about its participants.
constructor
phone.groupCall#9e727aad call:GroupCall participants:Vector<GroupCallParticipant> participants_next_offset:string chats:Vector<Chat> users:Vector<User> = phone.GroupCall;
Parameters
| Name | Type | Description |
|---|---|---|
| Call | GroupCall | Info about the group call |
| Participants | Vector<GroupCallParticipant> | A partial list of participants. |
| ParticipantsNextOffset | string | Next offset to use when fetching the remaining participants using phone. get Group Participants |
| Chats | Vector<Chat> | Chats mentioned in the participants vector |
| Users | Vector<User> | Users mentioned in the participants vector |
Returns
phone.GroupCallGogram Example
// Creating PhoneGroupCall constructor obj := &tg.PhoneGroupCall{ Call: &tg.GroupCall{}, Participants: []tg.GroupCallParticipant{&tg.GroupCallParticipant{}}, ParticipantsNextOffset: "...", Chats: []tg.Chat{&tg.Chat{}}, Users: []tg.User{&tg.User{}}, }