Layer 220
constructor
channelAdminLogEventActionParticipantJoinByRequest#afb6144a invite:ExportedChatInvite approved_by:long = ChannelAdminLogEventAction;

Parameters

Name Type Description
Invite ExportedChatInvite The invite link that was used to join the chat
ApprovedBy long ID of the admin that approved the invite

Gogram Example

// Creating ChannelAdminLogEventActionParticipantJoinByRequest constructor
obj := &tg.ChannelAdminLogEventActionParticipantJoinByRequest{
    Invite: &tg.ExportedChatInvite{},
    ApprovedBy: int64(0),
}