Layer 224
ChannelAdminLogEventAction
Abstract type representing one of 51 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.ChannelAdminLogEventAction interface.
Use any of the following constructors:
ChannelAdminLogEventActionChangeTitle
Channel/supergroup title was changed
ChannelAdminLogEventActionChangeAbout
The description was changed
ChannelAdminLogEventActionChangeUsername
Channel/supergroup username was changed
ChannelAdminLogEventActionToggleInvites
Invites were enabled/disabled
ChannelAdminLogEventActionChangePhoto
The channel/supergroup's picture was changed
ChannelAdminLogEventActionUpdatePinned
A message was pinned
ChannelAdminLogEventActionEditMessage
A message was edited
ChannelAdminLogEventActionToggleSignatures
Channel signatures were enabled/disabled
ChannelAdminLogEventActionParticipantJoin
A user has joined the group (in the case of big groups, info of the user that has joined isn't shown
ChannelAdminLogEventActionDeleteMessage
A message was deleted
ChannelAdminLogEventActionParticipantLeave
A user left the channel/supergroup (in the case of big groups, info of the user that has joined isn'
ChannelAdminLogEventActionParticipantInvite
A user was invited to the group
ChannelAdminLogEventActionParticipantToggleAdmin
The admin rights of a user were changed
ChannelAdminLogEventActionParticipantToggleBan
The banned rights of a user were changed
ChannelAdminLogEventActionTogglePreHistoryHidden
The hidden prehistory setting was changed
ChannelAdminLogEventActionChangeStickerSet
The supergroup's stickerset was changed
ChannelAdminLogEventActionDefaultBannedRights
The default banned rights were modified
ChannelAdminLogEventActionStopPoll
A poll was stopped
ChannelAdminLogEventActionChangeLinkedChat
The linked chat was changed
ChannelAdminLogEventActionChangeLocation
The geogroup location was changed
ChannelAdminLogEventActionToggleSlowMode
Slow mode setting for supergroups was changed
ChannelAdminLogEventActionStartGroupCall
A group call was started
ChannelAdminLogEventActionParticipantUnmute
A group call participant was unmuted
ChannelAdminLogEventActionParticipantMute
A group call participant was muted
ChannelAdminLogEventActionDiscardGroupCall
A group call was terminated
ChannelAdminLogEventActionToggleGroupCallSetting
Group call settings were changed
ChannelAdminLogEventActionParticipantJoinByInvite
A user joined the supergroup/channel using a specific invite link
ChannelAdminLogEventActionExportedInviteEdit
A chat invite was edited
ChannelAdminLogEventActionExportedInviteRevoke
A specific invite link was revoked
ChannelAdminLogEventActionExportedInviteDelete
A chat invite was deleted
ChannelAdminLogEventActionParticipantVolume
channel Admin Log Event. user_id has set the volume of participant. peer to participant. volume
ChannelAdminLogEventActionParticipantJoinByRequest
A new member was accepted to the chat by an admin
ChannelAdminLogEventActionChangeHistoryTtl
The Time-To-Live of messages in this chat was changed
ChannelAdminLogEventActionToggleNoForwards
Forwards were enabled or disabled
ChannelAdminLogEventActionChangeAvailableReactions
The set of allowed message reactions for this channel has changed
ChannelAdminLogEventActionSendMessage
A message was posted in a channel
ChannelAdminLogEventActionChangeUsernames
The list of usernames associated with the channel was changed
ChannelAdminLogEventActionToggleForum
Forum functionality was enabled or disabled.
ChannelAdminLogEventActionCreateTopic
A forum topic was created
ChannelAdminLogEventActionEditTopic
A forum topic was edited
ChannelAdminLogEventActionDeleteTopic
A forum topic was deleted
ChannelAdminLogEventActionPinTopic
A forum topic was pinned or unpinned
ChannelAdminLogEventActionToggleAntiSpam
Native antispam functionality was enabled or disabled.
ChannelAdminLogEventActionChangePeerColor
The message accent color was changed
ChannelAdminLogEventActionChangeWallpaper
The wallpaper was changed
ChannelAdminLogEventActionChangeProfilePeerColor
The profile accent color was changed
ChannelAdminLogEventActionChangeEmojiStatus
The emoji status was changed
ChannelAdminLogEventActionChangeEmojiStickerSet
The supergroup's custom emoji stickerset was changed.
ChannelAdminLogEventActionToggleAutotranslation
Channel autotranslation was toggled.
ChannelAdminLogEventActionParticipantSubExtend
A paid subscriber has extended their Telegram Star subscription.
ChannelAdminLogEventActionToggleSignatureProfiles
Channel signature profiles were enabled/disabled.
Gogram Example
// ChannelAdminLogEventAction is an interface type // You can use any of the following constructors: var _ tg.ChannelAdminLogEventAction = &tg.ChannelAdminLogEventActionChangeTitle{} var _ tg.ChannelAdminLogEventAction = &tg.ChannelAdminLogEventActionChangeAbout{} var _ tg.ChannelAdminLogEventAction = &tg.ChannelAdminLogEventActionChangeUsername{} var _ tg.ChannelAdminLogEventAction = &tg.ChannelAdminLogEventActionToggleInvites{} var _ tg.ChannelAdminLogEventAction = &tg.ChannelAdminLogEventActionChangePhoto{} // ... and 46 more constructors