SerenAI

Pay Per Call Agentic Commerce

InvoiceLineItem

Invoice line item response

Properties

PropertyTypeRequiredDescription
amount_usd string Yes
description string Yes
line_type string Yes
quantity string Yes
unit_price string Yes
View JSON Schema
{
  "type": "object",
  "description": "Invoice line item response",
  "required": [
    "description",
    "line_type",
    "quantity",
    "unit_price",
    "amount_usd"
  ],
  "properties": {
    "amount_usd": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "line_type": {
      "type": "string"
    },
    "quantity": {
      "type": "string"
    },
    "unit_price": {
      "type": "string"
    }
  }
}