import { GeneralExternalId } from "./generalExternalId"; /** * Hole section. */ export interface HoleSection { source: GeneralExternalId; /** * Name for the hole section. */ name: string; /** * Hole size of the hole section in hole section group hole size unit. */ holeSize?: number; /** * Bit size of the hole section in hole section group bit size unit. */ bitSize?: number; /** * The timestamp in milliseconds since the epoch (Jan 1, 1970) when the hole sections was started. */ startTime?: number; /** * The timestamp in milliseconds since the epoch (Jan 1, 1970) when the hole sections was completed. */ endTime?: number; /** * Top of the hole section - shallowest point by measured depth. */ topMeasuredDepth?: number; /** * Base of the hole section - deepest point by measured depth. */ baseMeasuredDepth?: number; }