/** * 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 { GetPdfExportStatus200Result } from './getPdfExportStatus200Result'; import type { GetPdfExportStatus200Status } from './getPdfExportStatus200Status'; export type GetPdfExportStatus200 = { /** Export job ID */ id: string; /** Export job status */ status: GetPdfExportStatus200Status; /** 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: GetPdfExportStatus200Result; }; //# sourceMappingURL=getPdfExportStatus200.d.ts.map