Layer 227
constructor
channels.channelParticipant#dfb80317 participant:ChannelParticipant chats:Vector<Chat> users:Vector<User> = channels.ChannelParticipant;

Parameters

Name Type Description
Participant ChannelParticipant The channel participant
Chats Vector < Chat > Mentioned chats
Users Vector < User > Users

Gogram Example

// Creating ChannelsChannelParticipantObj constructor
obj := &tg.ChannelsChannelParticipantObj{
    Participant: &tg.ChannelParticipant{},
    Chats: &tg.VectorChat{},
    Users: &tg.VectorUser{},
}