chatlists.JoinChatlistInvite
- class pyrogram.raw.functions.chatlists.JoinChatlistInvite
Import a chat folder deep link », joining some or all the chats in the folder.
- Details:
Layer:
223ID:
A6B1E39A
TL Schema
chatlists.joinChatlistInvite#a6b1e39a
slug:string
peers:Vector<InputPeer>
= Updates
Parameter Tree
JoinChatlistInvite
├── slug →
string└── peers →
Vector < InputPeer >├──
InputPeerEmpty├──
InputPeerSelf├──
InputPeerChat│ └── chat_id →
long├──
InputPeerUser│ ├── user_id →
long│ └── access_hash →
long├──
InputPeerChannel│ ├── channel_id →
long│ └── access_hash →
long│ ├── peer →
InputPeer│ │ ├──
InputPeerEmpty│ │ ├──
InputPeerSelf│ │ ├──
InputPeerChat│ │ ├──
InputPeerUser│ │ ├──
InputPeerChannel│ │ ├──
InputPeerUserFromMessage│ │ └──
InputPeerChannelFromMessage│ ├── msg_id →
int│ └── user_id →
long├── peer →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ ├──
InputPeerUser│ ├──
InputPeerChannel│ ├──
InputPeerUserFromMessage├── msg_id →
int└── channel_id →
longExample
await app.invoke(
JoinChatlistInvite(
slug="text",
peers=[
await app.resolve_peer(chat_id)
],
)
)