/** * 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 */ /** * Default tax clauses per transaction type. Auto-applied to documents based on transaction type determination. Supports template variables: {entity_name}, {customer_name}, {document_number}, etc. * @nullable */ export type PatchEntityBodySettingsTaxClauseDefaults = { /** * Default tax clause for domestic transactions (same country) * @nullable */ domestic?: string | null; /** * Default tax clause for intra-EU B2B transactions (reverse charge applies) * @nullable */ intra_eu_b2b?: string | null; /** * Default tax clause for intra-EU B2C transactions * @nullable */ intra_eu_b2c?: string | null; /** * Default tax clause for third-world B2B transactions (non-EU, business customer) * @nullable */ '3w_b2b'?: string | null; /** * Default tax clause for third-world B2C transactions (non-EU, end consumer) * @nullable */ '3w_b2c'?: string | null; /** * Deprecated: Use 3w_b2b and 3w_b2c instead. Default tax clause for export transactions. * @nullable */ export?: string | null; } | null; //# sourceMappingURL=patchEntityBodySettingsTaxClauseDefaults.d.ts.map