import { DepthMeasurementWellTopsFilter } from "./depthMeasurementWellTopsFilter"; import { Identifier } from "./identifier"; import { DepthMeasurementHoleSectionFilter } from "./depthMeasurementHoleSectionFilter"; export interface DepthMeasurementFilter { /** * Filter depth measurements that contain columns with one of the given measurement types. */ measurementTypes?: Array; /** * Filter depth measurements that belong to one of the given wellbores. */ wellboreIds?: Array; holeSections?: DepthMeasurementHoleSectionFilter; wellTops?: DepthMeasurementWellTopsFilter; }