/** * 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 */ /** * UPN QR payment slip settings (Slovenia only). Displays payment QR code on invoices for easy bank transfers. * @nullable */ export type CreateEntityBodySettingsUpnQr = { /** Whether UPN QR payment slip is enabled on invoices (Slovenia only) */ enabled: boolean; /** Display mode for UPN payment slip: 'qr_only' shows QR code inline after content, 'full_slip' shows complete payment slip at page bottom */ display_mode?: 'qr_only' | 'full_slip'; /** * 4-letter purpose code for UPN payments (ISO 20022). Common values: OTHR (other), GDSV (goods/services), SALA (salary) * @minLength 4 * @maxLength 4 * @pattern ^[A-Z]{4}$ */ purpose_code?: string; } | null; //# sourceMappingURL=createEntityBodySettingsUpnQr.d.ts.map