Skip to main content

Class ChannelCreateAuditLogData

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

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

Properties​

ChannelId​

Gets the snowflake ID of the created channel.

View Source​
Declaration
public ulong ChannelId { get; }

ChannelName​

Gets the name of the created channel.

View Source​
Declaration
public string ChannelName { get; }

ChannelType​

Gets the type of the created channel.

View Source​
Declaration
public ChannelType ChannelType { get; }

SlowModeInterval​

Gets the current slow-mode delay of the created channel.

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

IsNsfw​

Gets the value that indicates whether the created channel is NSFW.

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

Bitrate​

Gets the bit-rate that the clients in the created voice channel are requested to use.

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

Overwrites​

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

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

Implements​