MadelineProtoDocs/docs/API_docs/constructors/chatParticipants.md

1.0 KiB

title description image
chatParticipants chatParticipants attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: chatParticipants

Back to constructors index

Attributes:

Name Type Required
chat_id int Yes
participants Array of ChatParticipant Yes
version int Yes

Type: ChatParticipants

Example:

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

PWRTelegram json-encoded version:

{"_": "chatParticipants", "chat_id": int, "participants": [ChatParticipant], "version": int}

Or, if you're into Lua:

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