import { TypeVersion } from './typeVersion'; /** * Contains information about the version the download format is being created for. * @export * @interface DownloadPayloadDataRelationshipsSourceData */ export interface DownloadPayloadDataRelationshipsSourceData { /** * * @type {TypeVersion} * @memberof DownloadPayloadDataRelationshipsSourceData */ 'type': TypeVersion; /** * The URN of the version the download is being created for. **Note**: Must be the raw string, not the URL encoded string. * @type {string} * @memberof DownloadPayloadDataRelationshipsSourceData */ 'id': string; }