import { DownloadDataAttributesFormat } from './downloadDataAttributesFormat'; /** * The properties of the download. * @export * @interface DownloadDataAttributes */ export interface DownloadDataAttributes { /** * * @type {DownloadDataAttributesFormat} * @memberof DownloadDataAttributes */ 'format'?: DownloadDataAttributesFormat; }