Layer 220
constructor
exportedChatlistInvite#c5181ac flags:# title:string url:string peers:Vector<Peer> = ExportedChatlistInvite;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
Title string Name of the link
Url string The chat folder deep link.
Peers Vector<Peer> Peers to import

Gogram Example

// Creating ExportedChatlistInvite constructor
obj := &tg.ExportedChatlistInvite{
    Title: "...",
    Url: "...",
    Peers: []tg.Peer{&tg.Peer{}},
}