export interface VideoFacetsEntity { subjects: { [id: string]: FacetEntity; }; ageRanges: { [id: string]: FacetEntity; }; bestForTags: { [id: string]: FacetEntity; }; durations: { [id: string]: FacetEntity; }; resourceTypes: { [id: string]: FacetEntity; }; channels?: { [id: string]: FacetEntity; }; videoTypes?: { [id: string]: FacetEntity; }; educationLevels?: { [id: string]: FacetEntity; }; topics?: { [id: string]: FacetEntity; }; languages?: { [id: string]: FacetEntity; }; cefrLevels?: { [id: string]: FacetEntity; }; videoSubtypes?: { [id: string]: FacetEntity; }; } export interface FacetEntity { hits: number; id?: string | null; name?: string | null; score?: number; }