Layer 227
ChatParticipantsObj
Contains the full list of members of basic groups; is NOT usable for supergroups/channels.
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 |
Returns
ChatParticipantsGogram Example
// Creating ChatParticipantsObj constructor obj := &tg.ChatParticipantsObj{ ChatId: int64(1234567890), Participants: &tg.VectorChatParticipant{}, Version: 42, }