/** * 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 { CalculatedItemType } from './calculatedItemType'; import type { DocumentItemTax } from './documentItemTax'; import type { LineDiscount } from './lineDiscount'; export interface CalculatedItem { /** @nullable */ name: string | null; /** @nullable */ description: string | null; /** @nullable */ type: CalculatedItemType; /** * Per-unit net price (before tax) * @nullable */ price: number | null; /** * Per-unit gross price (includes tax) * @nullable */ gross_price: number | null; /** @nullable */ quantity: number | null; /** @nullable */ unit: string | null; taxes: DocumentItemTax[]; discounts: LineDiscount[]; /** * Line total before tax * @nullable */ total: number | null; /** * Line total after tax * @nullable */ total_with_tax: number | null; /** * Line total before tax in entity currency * @nullable */ total_converted: number | null; /** * Line total after tax in entity currency * @nullable */ total_with_tax_converted: number | null; } //# sourceMappingURL=calculatedItem.d.ts.map