/** * 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 */ /** * Settings for automatic overdue invoice notification emails to customers * @nullable */ export type EntitySettingsOverdueNotifications = { /** Enable automatic overdue invoice notification emails to customers */ enabled?: boolean; /** Days overdue when notification emails are sent (exact day match). Email is triggered when any invoice hits these thresholds. */ threshold_days?: number[]; /** * Custom email subject. Available variables: {customer_name}, {entity_name}, {overdue_count} * @nullable */ email_subject?: string | null; /** * Custom email body. Available variables: {customer_name}, {entity_name}, {invoice_list}, {total_amount}, {entity_email}. If {invoice_list} is not included, the invoice table will be auto-appended. * @nullable */ email_body?: string | null; } | null; //# sourceMappingURL=entitySettingsOverdueNotifications.d.ts.map