/** * 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 */ /** * e-SLOG 2.0 validation data for Slovenian electronic invoices. Only applicable when entity.country_code = 'SI' and eslog validation is enabled. * @nullable */ export type EslogData = { /** * Override entity default: true = validate, false = skip, null = use entity setting * @nullable */ validation_enabled?: boolean | null; /** * Validation status: 'valid', 'invalid', or 'not_validated' * @nullable */ validation_status?: 'valid' | 'invalid' | 'not_validated' | null; /** * Array of validation error messages (if status is 'invalid') * @nullable */ validation_errors?: string[] | null; /** * ISO timestamp when validation was last performed * @nullable */ validated_at?: string | null; } | null; //# sourceMappingURL=eslogData.d.ts.map