Layer 220
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 Version info

Gogram Example

// Creating PhoneGroupParticipants constructor
obj := &tg.PhoneGroupParticipants{
    Count: 0,
    Participants: []tg.GroupCallParticipant{&tg.GroupCallParticipant{}},
    NextOffset: "...",
    Chats: []tg.Chat{&tg.Chat{}},
    Users: []tg.User{&tg.User{}},
    Version: 0,
}