/**
 * Agravity OpenAPI Documentation - Public Functions
 *
 * Contact: office@agravity.io
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

export interface DownloadZipStatus {
	id?: string | null;
	user?: string | null;
	percent?: number | null;
	part?: number | null;
	count?: number | null;
	message?: string | null;
	status?: string | null;
	zip_type?: DownloadZipStatus.ZipTypeEnum;
	zipname?: string | null;
	size?: string | null;
	url?: string | null;
}
export namespace DownloadZipStatus {
	export type ZipTypeEnum = 'DOWNLOAD' | 'SHARED' | 'QUICKSHARE' | 'PORTAL';
	export const ZipTypeEnum = {
		Download: 'DOWNLOAD' as ZipTypeEnum,
		Shared: 'SHARED' as ZipTypeEnum,
		Quickshare: 'QUICKSHARE' as ZipTypeEnum,
		Portal: 'PORTAL' as ZipTypeEnum
	};
}
