Skip to main content

Class RoleUpdateAuditLogData

Contains a piece of audit log data related to a role update.

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

Properties​

RoleId​

Gets the ID of the role that was changed.

View Source​
Declaration
public ulong RoleId { get; }

Before​

Gets the role information before the changes.

View Source​
Declaration
public RoleEditInfo Before { get; }

After​

Gets the role information after the changes.

View Source​
Declaration
public RoleEditInfo After { get; }

Implements​