messages.GetFutureChatCreatorAfterLeave

class pyrogram.raw.functions.messages.GetFutureChatCreatorAfterLeave

Telegram API function.

Details:
  • Layer: 223

  • ID: 3B7D0EA6

Parameters:

peer (InputPeer) – N/A

Returns:

User

TL Schema

messages.getFutureChatCreatorAfterLeave#3b7d0ea6
peer:InputPeer

= User

Parameter Tree

GetFutureChatCreatorAfterLeave
└── peerInputPeer
├── InputPeerEmpty
├── InputPeerSelf
├── InputPeerChat
│ └── chat_idlong
├── InputPeerUser
│ ├── user_idlong
│ └── access_hashlong
│ ├── channel_idlong
│ └── access_hashlong
│ ├── peerInputPeer
│ │ ├── InputPeerEmpty
│ │ ├── InputPeerSelf
│ │ ├── InputPeerChat
│ │ ├── InputPeerUser
│ │ ├── InputPeerChannel
│ │ ├── InputPeerUserFromMessage
│ │ └── InputPeerChannelFromMessage
│ ├── msg_idint
│ └── user_idlong
├── peerInputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ ├── InputPeerUser
│ ├── InputPeerChannel
├── msg_idint
└── channel_idlong

Example

await app.invoke(
    GetFutureChatCreatorAfterLeave(
        peer=await app.resolve_peer(chat_id),
    )
)