Show / Hide Table of Contents

Class ChannelDeleteAuditLogData

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

Inheritance
System.Object
ChannelDeleteAuditLogData
Implements
IAuditLogData
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Discord.Rest
Assembly: Discord.Net.Rest.dll
Syntax
public class ChannelDeleteAuditLogData : IAuditLogData

Properties

| Improve this Doc View Source

Bitrate

Gets the bit-rate of this channel if applicable.

Declaration
public int? Bitrate { get; }
Property Value
Type Description
System.Nullable<System.Int32>

An representing the bit-rate set of the voice channel. null if this is not mentioned in this entry.

| Improve this Doc View Source

ChannelId

Gets the snowflake ID of the deleted channel.

Declaration
public ulong ChannelId { get; }
Property Value
Type Description
System.UInt64

A System.UInt64 representing the snowflake identifier for the deleted channel.

| Improve this Doc View Source

ChannelName

Gets the name of the deleted channel.

Declaration
public string ChannelName { get; }
Property Value
Type Description
System.String

A string containing the name of the deleted channel.

| Improve this Doc View Source

ChannelType

Gets the type of the deleted channel.

Declaration
public ChannelType ChannelType { get; }
Property Value
Type Description
ChannelType

The type of channel that was deleted.

| Improve this Doc View Source

IsNsfw

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

Declaration
public bool? IsNsfw { get; }
Property Value
Type Description
System.Nullable<System.Boolean>

true if this channel had the NSFW flag enabled; otherwise false. null if this is not mentioned in this entry.

| Improve this Doc View Source

Overwrites

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

Declaration
public IReadOnlyCollection<Overwrite> Overwrites { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyCollection<Overwrite>

A collection of permission Overwrite.

| Improve this Doc View Source

SlowModeInterval

Gets the slow-mode delay of the deleted channel.

Declaration
public int? SlowModeInterval { get; }
Property Value
Type Description
System.Nullable<System.Int32>

An representing the time in seconds required before the user can send another message; 0 if disabled. null if this is not mentioned in this entry.

Implements

IAuditLogData
  • Improve this Doc
  • View Source
Back to top Generated by DocFX