Layer 227
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.GroupCall

Gogram Example

// Creating PhoneGroupCallObj constructor
obj := &tg.PhoneGroupCallObj{
    Call: &tg.GroupCall{},
    Participants: &tg.VectorGroupCallParticipant{},
    ParticipantsNextOffset: "Hello, World!",
    Chats: &tg.VectorChat{},
    Users: &tg.VectorUser{},
}