import { DistanceUnitEnum } from "./distanceUnitEnum"; import { SequenceSource } from "./sequenceSource"; import { WellTopSurfaceIngestion } from "./wellTopSurfaceIngestion"; import { PhaseEnum } from "./phaseEnum"; /** * A collection of well tops for a given wellbore. */ export interface WellTopsIngestion { /** * External id for the wellbore asset the well tops are associated with. Source for the wellbore and for the well tops must be the same. */ wellboreAssetExternalId: string; source: SequenceSource; measuredDepthUnit: DistanceUnitEnum; phase?: PhaseEnum; tops: Array; }