ExportedChatlistInvite
- class pyrogram.raw.types.ExportedChatlistInvite
Exported chat folder deep link ».
Constructor of
ExportedChatlistInvite.- Details:
Layer:
223ID:
C5181AC
- Parameters:
title (
str) – Name of the linkurl (
str) – The chat folder deep link ».peers (List of
Peer) – Peers to import
- Functions:
This object can be returned by 1 function.
Edit a chat folder deep link ».
TL Schema
exportedChatlistInvite#c5181ac
flags:#
title:string
url:string
peers:Vector<Peer>
= ExportedChatlistInvite
Parameter Tree
ExportedChatlistInvite
├── title →
string├── url →
string└── peers →
Vector < Peer >├──
PeerUser│ └── user_id →
long├──
PeerChat│ └── chat_id →
long└──
PeerChannel└── channel_id →
longExample
ExportedChatlistInvite(
title="text",
url="https://google.com",
peers=[
PeerUser(user_id=0)
],
)