import { TypeObject } from './typeObject'; /** * Contains information about the storage location of the download. * @export * @interface DownloadDataRelationshipsStorageData */ export interface DownloadDataRelationshipsStorageData { /** * * @type {TypeObject} * @memberof DownloadDataRelationshipsStorageData */ 'type'?: TypeObject; /** * The URN of the storage location. * @type {string} * @memberof DownloadDataRelationshipsStorageData */ 'id'?: string; }