Represents a user-defined audit reason for an audit event.

interface IAuditReason {
    auditEventType?: AuditEventType;
    id?: number;
    name?: string;
}

Implemented by

Properties

auditEventType?: AuditEventType

The audit event type for this audit reason.

id?: number

The audit reason id.

name?: string

The audit reason text.