import { IngestDetailsResource } from './IngestDetailsResource'; export interface ChannelResource { id: string; name: string; official: boolean; currency?: string; legalRestriction?: any; distributionMethods: any[]; description?: string; notes?: string; language?: any; contentCategories?: any[]; contentType?: string; oneLineDescription?: string; marketingInformation?: any; pedagogyInformation?: any; ingest?: IngestDetailsResource; contractId?: string; contractName?: string; taxonomy?: { categories?: Array<{ codeValue: string; description: string; }>; requiresVideoLevelTagging?: boolean; }; educationLevels?: { code: string; }[]; _links: any; }