ExportedChatlistInvite

class pyrogram.raw.types.ExportedChatlistInvite

Exported chat folder deep link ».

Constructor of ExportedChatlistInvite.

Details:
  • Layer: 223

  • ID: C5181AC

Parameters:
  • title (str) – Name of the link

  • url (str) – The chat folder deep link ».

  • peers (List of Peer) – Peers to import

Functions:

This object can be returned by 1 function.

chatlists.EditExportedInvite

Edit a chat folder deep link ».

TL Schema

exportedChatlistInvite#c5181ac
flags:#
title:string
url:string
peers:Vector<Peer>

= ExportedChatlistInvite

Parameter Tree

ExportedChatlistInvite
├── titlestring
├── urlstring
└── peersVector < Peer >
├── PeerUser
│ └── user_idlong
├── PeerChat
│ └── chat_idlong
└── PeerChannel
└── channel_idlong

Example

ExportedChatlistInvite(
    title="text",
    url="https://google.com",
    peers=[
            PeerUser(user_id=0)
        ],
)