QuoteLine
Represents information about an quote line.
type QuoteLine {
id: ID!
quantity: Decimal
amount: Decimal
unit: ProductUnit
discount: Decimal
taxAmount: Decimal
totalExcludingTax: Decimal
total: Decimal
product: Product
quoteLine: QuoteLine
notes: String
tax: TaxRate
sortOrder: Int
createdAt: DateTimeTz!
updatedAt: DateTimeTz!
deletedAt: DateTimeTz
}
Fields
QuoteLine.id
● ID!
non-null scalar
Quote line's unique identifier.
QuoteLine.quantity
● Decimal
scalar
The quote line's quantity.
QuoteLine.amount
● Decimal
scalar
The quote line's amount.
QuoteLine.unit
● ProductUnit
enum
The quote line's unit.
QuoteLine.discount
● Decimal
scalar
The quote line's discount.
QuoteLine.taxAmount
● Decimal
scalar
The amount of tax calculated per tax rate for this line.
QuoteLine.totalExcludingTax
● Decimal
scalar
The total of this line excluding tax.
QuoteLine.total
● Decimal
scalar
Quote line's total after discounts and taxes.
QuoteLine.product
● Product
object
The quote line's product.