Layer 227
constructor
chatlists.chatlistInviteAlready#fa87f659 filter_id:int missing_peers:Vector<Peer> already_peers:Vector<Peer> chats:Vector<Chat> users:Vector<User> = chatlists.ChatlistInvite;

Parameters

Name Type Description
FilterId int ID of the imported folder
MissingPeers Vector < Peer > New peers to be imported
AlreadyPeers Vector < Peer > Peers that were already imported
Chats Vector < Chat > Related chat information
Users Vector < User > Related user information

Gogram Example

// Creating ChatlistsChatlistInviteAlready constructor
obj := &tg.ChatlistsChatlistInviteAlready{
    FilterId: 42,
    MissingPeers: &tg.VectorPeer{},
    AlreadyPeers: &tg.VectorPeer{},
    Chats: &tg.VectorChat{},
    Users: &tg.VectorUser{},
}