Class InviteDeleteAuditLogData
Contains a piece of audit log data related to an invite removal.
Assembly: Discord.Net.Rest.dll​
View Source​
Declaration
public class InviteDeleteAuditLogData : IAuditLogData
Properties​
MaxAge​
Gets the time (in seconds) until the invite expires.
View Source​
Declaration
public int MaxAge { get; }
Code​
Gets the unique identifier for this invite.
View Source​
Declaration
public string Code { get; }
Temporary​
Gets a value that indicates whether the invite is a temporary one.
View Source​
Declaration
public bool Temporary { get; }
Creator​
Gets the user that created this invite if available.
View Source​
Declaration
public IUser Creator { get; }
ChannelId​
Gets the ID of the channel this invite is linked to.
View Source​
Declaration
public ulong ChannelId { get; }
Uses​
Gets the number of times this invite has been used.
View Source​
Declaration
public int Uses { get; }
MaxUses​
Gets the max number of uses this invite may have.
View Source​
Declaration
public int MaxUses { get; }