Type Alias InvoiceItemDto

InvoiceItemDto: {
    name: string;
    currency: string;
    amount: number;
    qty: number;
    description?: string;
    productId?: string;
    priceId?: string;
    taxes?: InvoiceTax[];
}

Type declaration

  • name: string
  • currency: string
  • amount: number
  • qty: number
  • Optionaldescription?: string
  • OptionalproductId?: string
  • OptionalpriceId?: string
  • Optionaltaxes?: InvoiceTax[]