/** * 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 { MigrationJobResponseStatus } from './migrationJobResponseStatus'; export interface MigrationJobResponse { /** Job ID */ id: string; /** Legacy organization ID */ legacy_org_id: string; /** Target environment */ environment: string; /** * Created entity ID (on completion) * @nullable */ entity_id: string | null; /** Migration job status */ status: MigrationJobResponseStatus; /** * Current step label * @nullable */ step: string | null; /** Current step number */ step_number: number; /** Total number of steps */ total_steps: number; /** * Progress detail * @nullable */ progress_detail: string | null; /** * User-friendly error message * @nullable */ error: string | null; /** Job creation date */ created_at: string; /** * Job start date * @nullable */ started_at: string | null; /** * Job completion date * @nullable */ completed_at: string | null; } //# sourceMappingURL=migrationJobResponse.d.ts.map