863 B
863 B
title | description | image |
---|---|---|
chatParticipant | Group member. | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: chatParticipant
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}