import type { DesignerMappingDTO } from './DesignerMappingDTO'; import type { RuntimeMappingDTO } from './RuntimeMappingDTO'; import type { Tag } from './Tag'; export type Audit = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; readonly messagingServiceId?: string; readonly auditEntityType?: string; readonly messagingServiceName?: string; readonly identifier?: string; readonly status?: string; readonly designerMappingId?: string; readonly designerMappingAssociationId?: string; readonly runtimeMappingId?: string; readonly runtimeMappingAssociationId?: string; designerMapping?: DesignerMappingDTO; runtimeMapping?: RuntimeMappingDTO; associatedTags?: Array; schemaType?: string; type?: string; };