import type { BulkAuditImportDTO } from './BulkAuditImportDTO'; export type AuditImportJobMetadata = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; jobId?: string; jobType?: string; status?: AuditImportJobMetadata.status; messagingServiceId?: string; payload?: BulkAuditImportDTO; id?: string; type?: string; }; export declare namespace AuditImportJobMetadata { enum status { IN_PROGRESS = "in_progress", ERROR = "error", VALIDATION_ERROR = "validation_error", SUCCESS = "success" } }