/** * 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 { DocumentRelationRelatedDocumentTitleType } from './documentRelationRelatedDocumentTitleType'; import type { DocumentRelationRelatedDocumentType } from './documentRelationRelatedDocumentType'; export type DocumentRelationRelatedDocument = { id: string; /** Type of document */ type: DocumentRelationRelatedDocumentType; number: string; date: string; total_with_tax: number; currency_code: string; is_draft: boolean; /** @nullable */ voided_at: string | null; /** @nullable */ paid_in_full: boolean | null; /** @nullable */ title_type: DocumentRelationRelatedDocumentTitleType; /** @nullable */ hide_prices: boolean | null; }; //# sourceMappingURL=documentRelationRelatedDocument.d.ts.map