UpdateChatParticipantAdd
- class pyrogram.raw.types.UpdateChatParticipantAdd
New group member.
Constructor of
Update.- Details:
Layer:
223ID:
3DDA5451
- Parameters:
chat_id (
int64-bit) – Group IDuser_id (
int64-bit) – ID of the new memberinviter_id (
int64-bit) – ID of the user, who added member to the groupdate (
int32-bit) – When was the participant addedversion (
int32-bit) – Chat version number
TL Schema
updateChatParticipantAdd#3dda5451
chat_id:long
user_id:long
inviter_id:long
date:int
version:int
= Update
Parameter Tree
UpdateChatParticipantAdd
├── chat_id →
long├── user_id →
long├── inviter_id →
long├── date →
int└── version →
intExample
UpdateChatParticipantAdd(
chat_id=0,
user_id=0,
inviter_id=0,
date=0,
version=0,
)