Invoice item object

Every line item on a Ruddr invoice must have an invoice item. The invoice item is the category of the charge to the customer, such as "Service" or "Expense".

Example

{
  "id": "b0baae77-24dc-476b-a73c-1d4b4bee3efe",
  "name": "General Product Sales",
  "isActive": true,
  "typeId": "income",
  "readOnly": false,
  "createdAt": "2021-11-13T12:31:22.762Z"
}

Attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the invoice item.
isActivebooleanA flag to indicate if the invoice item is active in the system.
typeIdstringThe invoice item type. Can be either income or expense.
readOnlybooleanA flag to indicate if the invoice item is read-only.
createdAttimestampThe timestamp when the object was created.