import type { BulkScanResultItemV3 } from '../schemas/BulkScanResultItemV3'; /** * Response data for bulk scan evaluation status */ export interface BulkScanEvaluationStatusDataV3 { /** * Error message (only present when status is failure) */ error?: string | null; /** * The evaluation ID */ evaluationId?: string; /** * List of scan results (only present when status is success) */ scans?: BulkScanResultItemV3[] | null; /** * Status of the evaluation */ status?: 'FAILURE' | 'PENDING' | 'PROCESSING' | 'SUCCESS'; }