import type { line_item_LineItem } from './line_item_LineItem'; export type invoiceTemplate_InvoiceTemplate = { /** * AttachmentKeys are the storage keys of files attached to the template. */ attachmentKeys?: Array; createdAt?: string; creatorId?: string; data?: string; id?: string; identityId?: string; /** * LineItems are the billable line items that make up the template; at least one is required. */ lineItems: Array; /** * Memo is an optional note shown on invoices created from this template. */ memo?: string; /** * Name is the human-readable name of the invoice template. */ name: string; object?: string; previousAttributes?: Record; ref?: string; /** * TaxPercentage is the tax rate applied to the template total, expressed as a percentage (e.g. 8.5 for 8.5%). */ taxPercentage?: number; updatedAt?: string; };