import { DownloadPayloadDataAttributes } from './downloadPayloadDataAttributes'; import { DownloadPayloadDataRelationships } from './downloadPayloadDataRelationships'; import { TypeDownloads } from './typeDownloads'; /** * Contains information about the desired download format and the version of the item to convert to this format. * @export * @interface DownloadPayloadData */ export interface DownloadPayloadData { /** * * @type {TypeDownloads} * @memberof DownloadPayloadData */ 'type': TypeDownloads; /** * * @type {DownloadPayloadDataAttributes} * @memberof DownloadPayloadData */ 'attributes': DownloadPayloadDataAttributes; /** * * @type {DownloadPayloadDataRelationships} * @memberof DownloadPayloadData */ 'relationships': DownloadPayloadDataRelationships; }