import { DownloadableDataFileContentInterface } from './downloadableDataFileContentInterface'; import { DownloadableDataSampleExtensionInterface } from './downloadableDataSampleExtensionInterface'; export interface DownloadableDataSampleInterface { id?: number; title: string; sortOrder: number; sampleType: string; sampleFile?: string; sampleFileContent?: DownloadableDataFileContentInterface; sampleUrl?: string; extensionAttributes?: DownloadableDataSampleExtensionInterface; }