MadelineProtoDocs/old_docs/API_docs_v14/constructors/chatParticipant.md

863 B

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

Constructor: chatParticipant

Back to constructors index

Group member.

Attributes:

Name Type Required Description
user_id int Yes Member user ID
inviter_id int Yes ID of the user that added the member to the group
date int Yes Date added to the group

Type: ChatParticipant

Example:

$chatParticipant = ['_' => 'chatParticipant', 'user_id' => int, 'inviter_id' => int, 'date' => int];

Or, if you're into Lua:

chatParticipant={_='chatParticipant', user_id=int, inviter_id=int, date=int}