/** * 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 { RenderDocumentHtmlTemplate } from './renderDocumentHtmlTemplate'; export type RenderDocumentHtmlParams = { /** * Document template design to use. When not specified, uses the entity's configured template. */ template?: RenderDocumentHtmlTemplate; /** * Locale for number and date formatting (decimal separators, date order). When not specified, uses the entity's configured locale. For example, 'sl-SI' formats decimals with commas (5,5%) and dates as DD. MM. YYYY. * @minLength 2 * @maxLength 5 * @nullable */ locale?: string | null; /** * Language for document labels and translations (e.g., 'Invoice', 'Tax', 'Total'). When not specified, uses the same value as locale. Use this to get entity-locale formatting with different-language labels — for example, a Slovenian entity (sl-SI formatting with commas) but English labels. * @minLength 2 * @maxLength 5 * @nullable */ language?: string | null; }; //# sourceMappingURL=renderDocumentHtmlParams.d.ts.map