Layer 227
PhoneGroupParticipantsObj
Contains a page of group call participants, see getting info about a group call.
constructor
phone.groupParticipants#f47751b6 count:int participants:Vector<GroupCallParticipant> next_offset:string chats:Vector<Chat> users:Vector<User> version:int = phone.GroupParticipants;
Parameters
| Name | Type | Description |
|---|---|---|
| Count | int | Number of participants |
| Participants | Vector < GroupCallParticipant > | List of participants |
| NextOffset | string | If not empty, the specified list of participants is partial, and more participants can be fetched specifying this parameter as offset in phone. get Group Participants. |
| Chats | Vector < Chat > | Mentioned chats |
| Users | Vector < User > | Mentioned users |
| Version | int | Current participant-list version, used to apply and detect gaps in versioned update Group Call Participants updates |
Returns
phone.GroupParticipantsGogram Example
// Creating PhoneGroupParticipantsObj constructor obj := &tg.PhoneGroupParticipantsObj{ Count: 42, Participants: &tg.VectorGroupCallParticipant{}, NextOffset: "Hello, World!", Chats: &tg.VectorChat{}, Users: &tg.VectorUser{}, Version: 42, }