MadelineProtoDocs/docs/API_docs/constructors/chatParticipants.md

936 B

title description image
chatParticipants Group members. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: chatParticipants

Back to constructors index

Group members.

Attributes:

Name Type Required Description
chat_id int Yes Group identifier
participants Array of ChatParticipant Yes List of group members
version int Yes Group version number

Type: ChatParticipants

Example:

$chatParticipants = ['_' => 'chatParticipants', 'chat_id' => int, 'participants' => [ChatParticipant, ChatParticipant], 'version' => int];

Or, if you're into Lua:

chatParticipants={_='chatParticipants', chat_id=int, participants={ChatParticipant}, version=int}