UNPKG

@agravity/private

Version:

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

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