ExportedChatlistInvite

class pyrogram.raw.base.ExportedChatlistInvite

An exported chat folder deep link ».

Constructors:

This base type has 1 constructor available.

ExportedChatlistInvite

Exported chat folder deep link ».

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)
        ],
)