import { DownloadsStatus } from './downloadsStatus'; /** * Contains the properties that indicate the current status of the job. * @export * @interface CreatedDownloadDataAttributes */ export interface CreatedDownloadDataAttributes { /** * * @type {DownloadsStatus} * @memberof CreatedDownloadDataAttributes */ 'status'?: DownloadsStatus; }