import { SequenceSource } from "./sequenceSource"; import { DoglegSeverity } from "./doglegSeverity"; import { PhaseEnum } from "./phaseEnum"; export interface Trajectory { /** * The CDF asset external id of the wellbore this trajectory is associated with. The asset must have been ingested as a wellbore with the same source as this trajectory. */ wellboreAssetExternalId: string; /** * The matching id of the associated wellbore. */ wellboreMatchingId: string; type?: string; maxMeasuredDepth: number; maxTrueVerticalDepth: number; maxInclination: number; maxDoglegSeverity: DoglegSeverity; source: SequenceSource; isDefinitive: boolean; phase?: PhaseEnum; }