mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
1.0 KiB
1.0 KiB
title | description | nav_exclude | image |
---|---|---|---|
updateChatParticipantAdd | New group member. | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateChatParticipantAdd
New group member.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
chat_id | long | Yes | Group ID |
user_id | long | Yes | ID of the new member |
inviter_id | long | Yes | ID of the user, who added member to the group |
date | int | Yes | When was the participant added |
version | int | Yes | Chat version number |
Type: Update
Example:
$updateChatParticipantAdd = ['_' => 'updateChatParticipantAdd', 'chat_id' => long, 'user_id' => long, 'inviter_id' => long, 'date' => int, 'version' => int];