/** * 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-invoicing settings for sending documents via Peppol network (through Flowin). Requires supplier onboarding before documents can be sent electronically. * @nullable */ export type CreateEntityBodySettingsEInvoicing = { /** Whether e-invoicing is enabled for this entity. Requires supplier onboarding to be completed before documents can be sent. */ enabled?: boolean; /** E-invoicing provider. Currently only Flowin (Wolters Kluwer) is supported. */ provider?: 'flowin'; /** Automatically send invoices via e-invoice after creation. Only works when entity is fully onboarded with the provider. */ auto_send?: boolean; /** Default Peppol participant scheme ID for this entity. Common values: "0009" (SIRET, France), "9925" (VAT, Belgium), "0088" (EAN/GLN). */ default_scheme_id?: string; } | null; //# sourceMappingURL=createEntityBodySettingsEInvoicing.d.ts.map