import type { JobType } from './JobType'; export type JobBO = { id?: string; jobType?: JobType; status?: JobBO.status; details?: string; results?: string; error?: string; orgId?: string; createdTime?: number; updatedTime?: number; changedBy?: string; createdBy?: string; }; export declare namespace JobBO { enum status { IN_PROGRESS = "in_progress", ERROR = "error", VALIDATION_ERROR = "validation_error", SUCCESS = "success" } }