// Copyright © 2022-2026 Partium, Inc. DBA Partium import { BasePaginatedRequest } from '../../core/models/base-paginated-request'; /** * Request for getting data enrichment jobs. */ export interface GetEnrichmentJobsRequest extends BasePaginatedRequest { /** * Organization identifier when explicitly selecting an organization. */ organization?: string; /** * Include hidden results when supported by the endpoint. */ includeHidden?: boolean; }