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

Parameters

Name Type Description
Title string Name of the link
Url string The chat folder deep link.
Peers Vector<Peer> Peers to import

Gogram Example

// Creating ExportedChatlistInviteObj constructor
obj := &tg.ExportedChatlistInviteObj{
    Title: "Example",
    Url: "https://example.com",
    Peers: []tg.Peer{&tg.PeerChannel{}},
}