messages.GetExportedChatInvite
- class pyrogram.raw.functions.messages.GetExportedChatInvite
Get info about a chat invite
- Details:
Layer:
223ID:
73746F5C
- Parameters:
peer (
InputPeer) – Chatlink (
str) – Invite link
- Returns:
TL Schema
messages.getExportedChatInvite#73746f5c
peer:InputPeer
link:string
= messages.ExportedChatInvite
Parameter Tree
GetExportedChatInvite
├── peer →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ │ └── chat_id →
long│ ├──
InputPeerUser│ │ ├── user_id →
long│ │ └── access_hash →
long│ ├──
InputPeerChannel│ │ ├── channel_id →
long│ │ └── access_hash →
long│ ├──
InputPeerUserFromMessage│ │ ├── peer →
InputPeer│ │ │ ├──
InputPeerEmpty│ │ │ ├──
InputPeerSelf│ │ │ ├──
InputPeerChat│ │ │ ├──
InputPeerUser│ │ │ ├──
InputPeerChannel│ │ │ ├──
InputPeerUserFromMessage│ │ │ └──
InputPeerChannelFromMessage│ │ ├── msg_id →
int│ │ └── user_id →
long│ ├── peer →
InputPeer│ │ ├──
InputPeerEmpty│ │ ├──
InputPeerSelf│ │ ├──
InputPeerChat│ │ ├──
InputPeerUser│ │ ├──
InputPeerChannel│ │ ├──
InputPeerUserFromMessage│ │ └──
InputPeerChannelFromMessage│ ├── msg_id →
int│ └── channel_id →
long└── link →
stringExample
await app.invoke(
GetExportedChatInvite(
peer=await app.resolve_peer(chat_id),
link="text",
)
)