/**
 * Agravity OpenAPI Documentation - Public Functions
 *
 * Contact: support@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 const ZipTypeEnum = {
		Download: 'DOWNLOAD',
		Shared: 'SHARED',
		Quickshare: 'QUICKSHARE',
		Portal: 'PORTAL'
	} as const;
	export type ZipTypeEnum = (typeof ZipTypeEnum)[keyof typeof ZipTypeEnum];
}
