chatlists.GetLeaveChatlistSuggestions

class pyrogram.raw.functions.chatlists.GetLeaveChatlistSuggestions

Returns identifiers of pinned or always included chats from a chat folder imported using a chat folder deep link », which are suggested to be left when the chat folder is deleted.

Details:
  • Layer: 223

  • ID: FDBCD714

Parameters:

chatlist (InputChatlist) – Folder ID

Returns:

List of Peer

TL Schema

chatlists.getLeaveChatlistSuggestions#fdbcd714
chatlist:InputChatlist

= Vector<Peer>

Parameter Tree

GetLeaveChatlistSuggestions
└── chatlistInputChatlist
└── filter_idint

Example

await app.invoke(
    GetLeaveChatlistSuggestions(
        chatlist=InputChatlistDialogFilter(filter_id=0),
    )
)