/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Moneybird sales invoice - API format * * Note: During initialization, contact_id will be automatically assigned based on * the contacts created. Invoice dates will be calculated dynamically. * * Attributes: * reference: Invoice reference number * currency: Currency code (e.g., 'EUR') * prices_are_incl_tax: Whether prices include tax * state: Invoice state (draft, open, paid) * details: List of invoice line items */ export interface MoneybirdSalesInvoice { /** Invoice reference number */ reference: string; /** Currency code */ currency?: string; /** Whether prices include tax */ prices_are_incl_tax?: boolean; /** Invoice state (draft, open, paid) */ state?: string; /** Invoice line items */ details: Klavis.MoneybirdInvoiceDetail[]; }