Layer 220
constructor
chatlists.chatlistInvite#f10ece2f flags:# title_noanimate:flags.1?true title:TextWithEntities emoticon:flags.0?string peers:Vector<Peer> chats:Vector<Chat> users:Vector<User> = chatlists.ChatlistInvite;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
TitleNoanimate flags.1?true If set, any animated emojis present in title should not be animated and should be instead frozen on the first frame.
Title TextWithEntities Name of the link
Emoticon flags.0?string Emoji to use as icon for the folder.
Peers Vector<Peer> Supergroups and channels to join
Chats Vector<Chat> Related chat information
Users Vector<User> Related user information

Gogram Example

// Creating ChatlistsChatlistInvite constructor
obj := &tg.ChatlistsChatlistInvite{
    Title: &tg.TextWithEntities{},
    Peers: []tg.Peer{&tg.Peer{}},
    Chats: []tg.Chat{&tg.Chat{}},
    Users: []tg.User{&tg.User{}},

    // Optional fields:
    // TitleNoanimate: true,
    // Emoticon: "...",
}