Layer 220
constructor
chatParticipants#3cbc93f8 chat_id:long participants:Vector<ChatParticipant> version:int = ChatParticipants;

Parameters

Name Type Description
ChatId long Group identifier
Participants Vector<ChatParticipant> List of group members
Version int Group version number

Gogram Example

// Creating ChatParticipants constructor
obj := &tg.ChatParticipants{
    ChatId: int64(0),
    Participants: []tg.ChatParticipant{&tg.ChatParticipant{}},
    Version: 0,
}