/** * A container of the file format of the download. * @export * @interface DownloadDataAttributesFormat */ export interface DownloadDataAttributesFormat { /** * The file name extension of the file format of the download. * @type {string} * @memberof DownloadDataAttributesFormat */ 'fileType'?: string; }