chatlists.ExportChatlistInvite
- class pyrogram.raw.functions.chatlists.ExportChatlistInvite
Export a folder », creating a chat folder deep link ».
- Details:
Layer:
223ID:
8472478E
- Parameters:
chatlist (
InputChatlist) – The folder to exporttitle (
str) – An optional name for the linkpeers (List of
InputPeer) – The list of channels, group and supergroups to share with the link. Basic groups will automatically be converted to supergroups when invoking the method.
- Returns:
TL Schema
chatlists.exportChatlistInvite#8472478e
chatlist:InputChatlist
title:string
peers:Vector<InputPeer>
= chatlists.ExportedChatlistInvite
Parameter Tree
ExportChatlistInvite
├── chatlist →
InputChatlist│ └── filter_id →
int├── title →
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(
ExportChatlistInvite(
chatlist=InputChatlistDialogFilter(filter_id=0),
title="text",
peers=[
await app.resolve_peer(chat_id)
],
)
)