ChatInviteImporter

class pyrogram.raw.base.ChatInviteImporter

When and which user joined the chat using a chat invite

Constructors:

This base type has 1 constructor available.

ChatInviteImporter

When and which user joined the chat using a chat invite

TL Schema

chatInviteImporter#8c5adfd9
flags:#
requested:flags.0?true
via_chatlist:flags.3?true
user_id:long
date:int
about:flags.2?string
approved_by:flags.1?long

= ChatInviteImporter

Parameter Tree

ChatInviteImporter
├── requestedtrue (optional)
├── via_chatlisttrue (optional)
├── user_idlong
├── dateint
├── aboutstring (optional)
└── approved_bylong (optional)

Example

ChatInviteImporter(
    requested=None,
    via_chatlist=None,
    user_id=0,
    date=0,
    about="text",
    approved_by=0,
)