import { SortKey } from './SortKey'; export interface VideoSearchRequest { query?: string; channel?: string[]; id?: string[]; page?: number; size?: number; sort_by?: SortKey; duration?: string[]; duration_facets?: string[]; age_range?: string[]; age_range_facets?: string[]; age_range_min?: number; age_range_max?: number; subject?: string[]; resource_types?: string[]; type?: string[]; include_channel_facets?: boolean; include_education_level_facets?: boolean; include_topic_facets?: boolean; prices?: string[]; released_date_from?: string; released_date_to?: string; category_code?: string[]; best_for?: string[]; education_level?: string[]; content_package?: string; topics?: string[]; language?: string[]; cefr_level?: string[]; include_cefr_level_facets?: boolean; subtype?: string[]; }