Interface RawAuditLogEntry

interface RawAuditLogEntry {
    action_type: AuditLogActionTypes;
    changes?: (StandardAuditLogChange | RoleAuditLogChange)[];
    id: string;
    options?: RawAuditLogEntryOptions;
    reason?: string;
    target_id: null | string;
    user_id: null | string;
}

Properties

action_type: AuditLogActionTypes

See the audit log documentation for more information.

id: string
reason?: string
target_id: null | string
user_id: null | string