chatlists.EditExportedInvite
- class pyrogram.raw.functions.chatlists.EditExportedInvite
Edit a chat folder deep link ».
- Details:
Layer:
223ID:
653DB63D
- Parameters:
chatlist (
InputChatlist) – Folder IDslug (
str) – slug obtained from the chat folder deep link ».title (
str, optional) – If set, sets a new name for the linkpeers (List of
InputPeer, optional) – If set, changes the list of peers shared with the link
- Returns:
TL Schema
chatlists.editExportedInvite#653db63d
flags:#
chatlist:InputChatlist
slug:string
title:flags.1?string
peers:flags.2?Vector<InputPeer>
= ExportedChatlistInvite
Parameter Tree
EditExportedInvite
├── chatlist →
InputChatlist│ └── filter_id →
int├── slug →
string├── title →
string (optional)└── peers →
Vector < InputPeer > (optional)├──
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(
EditExportedInvite(
chatlist=InputChatlistDialogFilter(filter_id=0),
slug="text",
title="text",
peers=[
await app.resolve_peer(chat_id)
],
)
)