export interface IInvoiceLineItem { metadata: { [key: string]: string | null; } | null; name: string; quantity: number; sku: string; }