Layer 228
constructor
communities.participantJoinedChats#8d78512a creator_chat_ids:Vector<long> joined_chat_ids:Vector<long> chats:Vector<Chat> users:Vector<User> = communities.ParticipantJoinedChats;

Parameters

Name Type Description
CreatorChatIds Vector<long>
JoinedChatIds Vector<long>
Chats Vector<Chat>
Users Vector<User>

Gogram Example

// Creating CommunitiesParticipantJoinedChatsObj constructor
obj := &tg.CommunitiesParticipantJoinedChatsObj{
    CreatorChatIds: []long{},
    JoinedChatIds: []long{},
    Chats: []tg.Chat{&tg.ChatObj{}},
    Users: []tg.User{&tg.UserObj{}},
}