import { Distance } from "./distance"; export interface CasingCementing { /** * Top measured depth of the cementing. If both `baseMeasuredDepth` and `topMeasuredDepth` are set, then `baseMeasuredDepth` must be larger or equal to `topMeasuredDepth`. */ topMeasuredDepth?: Distance; /** * Base measured depth of the cementing. If both `baseMeasuredDepth` and `topMeasuredDepth` are set, then `baseMeasuredDepth` must be larger or equal to `topMeasuredDepth`. */ baseMeasuredDepth?: Distance; }