/** * Build detail entry for a single scan. */ export interface BuildDetailEntryV3 { /** * Epoch time (seconds) of the latest execution. * @format int64 */ lastExecutionTime: number; /** * Latest execution identifier. */ latestExecutionId: string; /** * Pipeline identifier. */ pipelineId: string; /** * Root package identifier in name@version format. */ rootPackage: string; /** * Stage identifier. */ stageId: string; /** * Step identifier. */ stepId?: string; }