Skip to main content

Class OverwriteUpdateAuditLogData

Contains a piece of audit log data related to the update of a permission overwrite.

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

Properties​

ChannelId​

Gets the ID of the channel that the overwrite was updated from.

View Source​
Declaration
public ulong ChannelId { get; }

OldPermissions​

Gets the overwrite permissions before the changes.

View Source​
Declaration
public OverwritePermissions OldPermissions { get; }

NewPermissions​

Gets the overwrite permissions after the changes.

View Source​
Declaration
public OverwritePermissions NewPermissions { get; }

OverwriteTargetId​

Gets the ID of the overwrite that was updated.

View Source​
Declaration
public ulong OverwriteTargetId { get; }

OverwriteType​

Gets the target of the updated permission overwrite.

View Source​
Declaration
public PermissionTarget OverwriteType { get; }

Implements​