import { DistanceUnitEnum } from "./distanceUnitEnum"; import { PhaseEnum } from "./phaseEnum"; import { HoleSectionIngestion } from "./holeSectionIngestion"; /** * Hole section groups ingestion. */ export interface HoleSectionGroupIngestion { /** * Name of the source for the hole section group. */ sourceName: string; /** * External id for the wellbore asset this hole section group is associated with. Source for the wellbore and for the hole section group must be the same. */ wellboreAssetExternalId: string; measuredDepthUnit: DistanceUnitEnum; sizeUnit: DistanceUnitEnum; /** * A unique identifier for the hole section group. This id will be used to reference this hole section group. */ externalId: string; phase?: PhaseEnum; /** * A list of hole sections for this group. */ sections: Array; }