import { Projection } from '../../common/model/Projection'; import { IngestType } from './IngestType'; import { SortKey } from './SortKey'; export interface ChannelFilterRequest { name?: string; ingestType?: IngestType[]; projection?: Projection; sort_by?: SortKey; page?: number; size?: number; categories?: string[]; education_levels?: string[]; }