InvoiceItem
A single line on an invoice: what you are billing for, how much of it, and at what rate.
- amountType: string | nullrequired
Quantity billed, as a decimal string.
- descriptionType: string | nullrequired
Longer description shown beneath the name, or
null. - idType: integerrequired
Unique identifier for the line item.
- nameType: string | nullrequired
Line item name, as it appears on the invoice.
- rateType: string | nullrequired
Price per unit, as a decimal string in the invoice currency.
- totalType: stringrequired
amountmultiplied byrate, rounded, as a decimal string. - unitType: string | null enum
_type requiredWhat the rate is charged per. Defaults to
flat.values- flat
- per
_hour - per
_day - per
_item - per
_word