// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * Response for creating a data enrichment job. */ export interface CreateEnrichmentJobResponse { /** * The id of the newly created enrichment job. */ jobId: string; partsSummary: { /** * The total amount of part-ids in the job */ totalCount: number; /** * The amount of valid part-ids in the job */ validCount: number; }; }