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