Layer 228
constructor
account.businessChatLinks#ec43a2d1 links:Vector<BusinessChatLink> chats:Vector<Chat> users:Vector<User> = account.BusinessChatLinks;

Parameters

Name Type Description
Links Vector<BusinessChatLink> Links
Chats Vector<Chat> Mentioned chats
Users Vector<User> Mentioned users

Gogram Example

// Creating AccountBusinessChatLinksObj constructor
obj := &tg.AccountBusinessChatLinksObj{
    Links: []tg.BusinessChatLink{&tg.BusinessChatLinkObj{}},
    Chats: []tg.Chat{&tg.ChatObj{}},
    Users: []tg.User{&tg.UserObj{}},
}