/** * 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 */ export type SendDocumentBody = { /** Recipient email address */ to: string; /** * Email subject line. If not provided, uses default from entity settings. * @minLength 1 * @maxLength 255 */ subject?: string; /** * Email body text with optional markdown formatting and template variables ({document_number}, {customer_name}, {entity_name}, {invoice_link}). * @minLength 1 */ body_text?: string; /** Whether to attach the document as a PDF. */ attach_pdf?: boolean; /** Whether to attach the document as e-SLOG 2.0 XML (Slovenian only). */ attach_eslog?: boolean; /** Sandbox only. Build and validate the document email send flow without actually delivering the email. */ sandbox_skip_delivery?: boolean; }; //# sourceMappingURL=sendDocumentBody.d.ts.map