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.
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
├── requested →
true (optional)├── via_chatlist →
true (optional)├── user_id →
long├── date →
int├── about →
string (optional)└── approved_by →
long (optional)Example
ChatInviteImporter(
requested=None,
via_chatlist=None,
user_id=0,
date=0,
about="text",
approved_by=0,
)