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