Skip to main content

Class ChannelDeleteAuditLogData

Contains a piece of audit log data related to a channel deletion.

Assembly: Discord.Net.Rest.dll​
View Source​
Declaration
public class ChannelDeleteAuditLogData : IAuditLogData

Properties​

ChannelId​

Gets the snowflake ID of the deleted channel.

View Source​
Declaration
public ulong ChannelId { get; }

ChannelName​

Gets the name of the deleted channel.

View Source​
Declaration
public string ChannelName { get; }

ChannelType​

Gets the type of the deleted channel.

View Source​
Declaration
public ChannelType ChannelType { get; }

SlowModeInterval​

Gets the slow-mode delay of the deleted channel.

View Source​
Declaration
public int? SlowModeInterval { get; }

IsNsfw​

Gets the value that indicates whether the deleted channel was NSFW.

View Source​
Declaration
public bool? IsNsfw { get; }

Bitrate​

Gets the bit-rate of this channel if applicable.

View Source​
Declaration
public int? Bitrate { get; }

Overwrites​

Gets a collection of permission overwrites that was assigned to the deleted channel.

View Source​
Declaration
public IReadOnlyCollection<Overwrite> Overwrites { get; }

Implements​