/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * Space Invoices API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * OpenAPI spec version: 1.0.0 */ import type { GetEslogExportStatus200Result } from './getEslogExportStatus200Result'; import type { GetEslogExportStatus200Status } from './getEslogExportStatus200Status'; export type GetEslogExportStatus200 = { /** Export job ID */ id: string; /** Export job status */ status: GetEslogExportStatus200Status; /** Export progress. While processing, this is the number of processed documents so far. Completed jobs return 100. */ progress: number; /** * Total number of documents to export * @nullable */ total_docs: number | null; /** * Download URL for the completed export * @nullable */ file_url: string | null; /** * Suggested ZIP filename for the completed export * @nullable */ file_name: string | null; /** * Error message if the export failed * @nullable */ error: string | null; /** * Optional async export result summary * @nullable */ result: GetEslogExportStatus200Result; }; //# sourceMappingURL=getEslogExportStatus200.d.ts.map