OBJECT
InvoiceItem
A price item in an invoice
link GraphQL Schema definition
- type InvoiceItem {
- # Description
- : String
- # If the invoice item total has been manually set, this field will be true.
- : Boolean
- # Manually set total without VAT.
- : Float
- : ID
- # Nom
- : String
- # Quantité
- : Float
- # Type
- : String
- # Prix unitaire
- : Float
- # Taux TVA
- : Float
- # VAT type code for this invoice item (e.g. S for standard, E for exempted).
- : String
- }