UNPKG

@agravity/private

Version:

The Agravity GlobalDAM API which allowes authenticated user to access the Agravity GlobalDAM Backend

33 lines (31 loc) 915 B
/** * Agravity OpenAPI Documentation - Private 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 }; }