Layer 228
PhoneGroupCallObj
Contains group call information and an initial participant page, see getting info about a group call.
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 PhoneGroupCallObj constructor obj := &tg.PhoneGroupCallObj{ Call: &tg.GroupCallObj{}, Participants: []tg.GroupCallParticipant{&tg.GroupCallParticipantObj{}}, ParticipantsNextOffset: "example", Chats: []tg.Chat{&tg.ChatObj{}}, Users: []tg.User{&tg.UserObj{}}, }