OBJECT

InvoiceItem

A price item in an invoice

link GraphQL Schema definition

  • type InvoiceItem {
  • # Description
  • description: String
  • # If the invoice item total has been manually set, this field will be true.
  • forceTotal: Boolean
  • # Manually set total without VAT.
  • forcedTotal: Float
  • id: ID
  • # Nom
  • name: String
  • # Quantité
  • quantity: Float
  • # Type
  • type: String
  • # Prix unitaire
  • unitPrice: Float
  • # Taux TVA
  • vat: Float
  • }