export type JobAdministrationDTO = { jobId?: string; orgId?: string; jobType?: string; status?: JobAdministrationDTO.status; loggingReason?: string; jobDetails?: string; createdTime?: string; updatedTime?: string; createdBy?: string; changedBy?: string; type?: string; }; export declare namespace JobAdministrationDTO { enum status { IN_PROGRESS = "in_progress", ERROR = "error", VALIDATION_ERROR = "validation_error", SUCCESS = "success" } }