OBJECT
InvoiceItem
InvoiceItem details
link GraphQL Schema definition
- type InvoiceItem {
- # amount of the invoice item (in cents)
- : Money
- # When the invoice item was created
- : ISO8601DateTime!
- # description of the invoice item
- : String
- # ID of the invoice item
- : ID!
- # invoice of the invoice item
- : Invoice
- # name of the invoice item
- : String
- # quantity of the invoice item
- : Int
- # gst_amount of the invoice item (in cents)
- : Money
- # tax_rate of the invoice item
- : TaxRate
- # When the invoice item was last updated
- : ISO8601DateTime!
- }