/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { TaskInfo } from './'; /** * * @export * @interface DownloadArchive */ export interface DownloadArchive { /** * * @type {string} * @memberof DownloadArchive */ id: string; /** * * @type {TaskInfo} * @memberof DownloadArchive */ taskInfo: TaskInfo; /** * * @type {number} * @memberof DownloadArchive */ readonly uncompressedSize: number; /** * * @type {number} * @memberof DownloadArchive */ readonly size: number; /** * * @type {string} * @memberof DownloadArchive */ readonly expires: string; /** * * @type {Array} * @memberof DownloadArchive */ readonly files: Array; /** * * @type {string} * @memberof DownloadArchive */ name: string; /** * * @type {string} * @memberof DownloadArchive */ path: string; /** * * @type {Date} * @memberof DownloadArchive */ readonly createdAt: Date; /** * * @type {number} * @memberof DownloadArchive */ progressUnit?: DownloadArchiveProgressUnitEnum; /** * * @type {number} * @memberof DownloadArchive */ user?: number | null; } /** * @export * @enum {string} */ export declare enum DownloadArchiveProgressUnitEnum { NUMBER_0 = 0, NUMBER_1 = 1 } export declare function DownloadArchiveFromJSON(json: any): DownloadArchive; export declare function DownloadArchiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadArchive; export declare function DownloadArchiveToJSON(value?: DownloadArchive | null): any;