import { SourceExternalId } from "./sourceExternalId"; /** * Rig operations record. */ export interface RigOperationIngestion { /** * The CDF asset external id of the wellbore where the operation took place. The asset must have been ingested as a wellbore with the same source name as this rig operation. */ wellboreAssetExternalId: string; /** * The source external id in CDF. */ source: SourceExternalId; /** * The name of the rig. */ rigName: string; /** * Epoch timestamp in milliseconds when the operation started. */ startTime?: number; /** * Epoch timestamp in milliseconds when the operation ended. */ endTime?: number; }