interface AdminAuditLogListItem {
    id: number;
    timestamp: string;
    user_email: string;
    action: "create" | "update" | "delete" | "bulk_delete";
    model_name: string;
    object_repr: string;
    changed_fields_count: number;
}

Properties

id: number
timestamp: string
user_email: string
action: "create" | "update" | "delete" | "bulk_delete"
model_name: string
object_repr: string
changed_fields_count: number