InvoiceLineItem
Represents an individual line item in an invoice.
type InvoiceLineItem {
createdAt: DateTime!
createdBy: String
description: String
dueDate: LocalDate
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
netAmount: Float!
payableItem: PayableItem
quantity: NonNegativeInt!
taxAmount: Float!
taxes: [InvoiceLineItemTax!]!
totalAmount: Float!
}
Fields
InvoiceLineItem.createdAt ● DateTime! non-null scalar
The date and time the record was created.
InvoiceLineItem.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
InvoiceLineItem.description ● String scalar
The description of the invoice line item. Optional.
InvoiceLineItem.dueDate ● LocalDate scalar
The scheduled date of payment for the payable item. Optional.
InvoiceLineItem.id ● ID! non-null scalar
The unique identifier of the invoice line item.
InvoiceLineItem.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
InvoiceLineItem.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
InvoiceLineItem.netAmount ● Float! non-null scalar
The net amount (i.e. tax excluded) of the invoice line item.
InvoiceLineItem.payableItem ● PayableItem object
The payable item that is associated with the invoice line item. Optional.
InvoiceLineItem.quantity ● NonNegativeInt! non-null scalar
The quantity of items the invoice line item represents.
InvoiceLineItem.taxAmount ● Float! non-null scalar
The amount for the tax component of the invoice line item.
InvoiceLineItem.taxes ● [InvoiceLineItemTax!]! non-null object
The tax items associated with the invoice line item.
InvoiceLineItem.totalAmount ● Float! non-null scalar
The total amount (tax included) of the invoice line item.
Member Of
Invoice object