/** * 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 { EInvoicingSubmissionMetadata } from './eInvoicingSubmissionMetadata'; /** * E-invoice submission status (document sent via Peppol) */ export interface EInvoicingSubmission { /** @maxLength 36 */ id: string; /** @maxLength 36 */ entity_id: string; /** @maxLength 36 */ supplier_id: string; /** @maxLength 20 */ environment: string; /** @maxLength 36 */ document_id: string; /** @maxLength 20 */ document_type: string; /** * @maxLength 255 * @nullable */ flowin_document_id?: string | null; /** * @maxLength 255 * @nullable */ transmission_id?: string | null; /** * @maxLength 255 * @nullable */ recipient_peppol_id?: string | null; /** * @maxLength 10 * @nullable */ recipient_scheme_id?: string | null; /** * @maxLength 255 * @nullable */ recipient_name?: string | null; /** @maxLength 50 */ status: string; /** @nullable */ error_message?: string | null; metadata?: EInvoicingSubmissionMetadata; /** @nullable */ submitted_at?: string | null; /** @nullable */ delivered_at?: string | null; created_at: string; updated_at: string; } //# sourceMappingURL=eInvoicingSubmission.d.ts.map