Layer 228
ChatlistsChatlistInviteObj
Info about a chat folder deep link.
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 |
|---|---|---|
| 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 |
Returns
chatlists.ChatlistInviteGogram Example
// Creating ChatlistsChatlistInviteObj constructor obj := &tg.ChatlistsChatlistInviteObj{ TitleNoanimate: nil, Title: &tg.TextWithEntitiesObj{}, Emoticon: "👍", Peers: []tg.Peer{&tg.PeerChannel{}}, Chats: []tg.Chat{&tg.ChatObj{}}, Users: []tg.User{&tg.UserObj{}}, }