Layer 224
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 ChatParticipantsObj constructor
obj := &tg.ChatParticipantsObj{
    ChatId: int64(1234567890),
    Participants: []tg.ChatParticipant{&tg.ChatParticipant{}},
    Version: 42,
}