ChatParticipant

class pyrogram.raw.types.ChatParticipant

Group member.

Constructor of ChatParticipant.

Details:
  • Layer: 223

  • ID: 38E79FDE

Parameters:
  • user_id (int 64-bit) – Member user ID

  • inviter_id (int 64-bit) – ID of the user that added the member to the group

  • date (int 32-bit) – Date added to the group

  • rank (str, optional) – N/A

TL Schema

chatParticipant#38e79fde
flags:#
user_id:long
inviter_id:long
date:int
rank:flags.0?string

= ChatParticipant

Parameter Tree

ChatParticipant
├── user_idlong
├── inviter_idlong
├── dateint
└── rankstring (optional)

Example

ChatParticipant(
    user_id=0,
    inviter_id=0,
    date=0,
)