import type { AuditRelationDTO } from './AuditRelationDTO'; export type AuditResultDetail = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; readonly parentId?: string; readonly versionId?: string; readonly entityId?: string; readonly scanId?: string; readonly status?: string; readonly identifier?: string; readonly relations?: Array; type?: string; };