/** * 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 { StripeAppEntityUpdateSettingsBodyAutoInvoiceEventsItem } from './stripeAppEntityUpdateSettingsBodyAutoInvoiceEventsItem'; export type StripeAppEntityUpdateSettingsBody = { /** Enable or disable auto-invoicing */ auto_invoice_enabled?: boolean; /** Stripe event types that trigger auto-invoice creation */ auto_invoice_events?: StripeAppEntityUpdateSettingsBodyAutoInvoiceEventsItem[]; /** * Default note to include on auto-created invoices * @maxLength 500 */ default_note?: string; /** * Default tax rate (%) to apply to auto-created invoices when Stripe data has no tax info. Set to null to disable. * @minimum 0 * @maximum 100 * @nullable */ default_tax_rate?: number | null; }; //# sourceMappingURL=stripeAppEntityUpdateSettingsBody.d.ts.map