import type { RuntimeImportFiltersDTO } from './RuntimeImportFiltersDTO'; export type RuntimeImportAllDTO = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; properties?: Record; auditImportAction?: RuntimeImportAllDTO.auditImportAction; filters?: RuntimeImportFiltersDTO; aggregationStrategy?: RuntimeImportAllDTO.aggregationStrategy; id?: string; type?: string; }; export declare namespace RuntimeImportAllDTO { enum auditImportAction { UPDATE_EXISTING_PARENT = "updateExistingParent", UPDATE_EXISTING_VERSION = "updateExistingVersion", CREATE_NEW_PARENT = "createNewParent", CREATE_NEW_VERSION = "createNewVersion", ADD_TO_EXISTING_VERSION = "addToExistingVersion" } enum aggregationStrategy { ALL_AUDIT_RESULTS_TO_ONE_PARENT = "ALL_AUDIT_RESULTS_TO_ONE_PARENT", ONE_AUDIT_RESULT_PER_PARENT = "ONE_AUDIT_RESULT_PER_PARENT", AUDIT_RESULTS_GROUPED_BY_PARENT = "AUDIT_RESULTS_GROUPED_BY_PARENT" } }