Skip to main content

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.

QuoteLine.quoteLine ● QuoteLine object

The quote line's origin quote line unique identifier.

QuoteLine.notes ● String scalar

The quote line's notes.

QuoteLine.tax ● TaxRate object

The quote line's tax.

QuoteLine.sortOrder ● Int scalar

The quote line's sort order.

QuoteLine.createdAt ● DateTimeTz! non-null scalar

The date and time when the quote was created.

QuoteLine.updatedAt ● DateTimeTz! non-null scalar

The date and time when the quote was last updated.

QuoteLine.deletedAt ● DateTimeTz scalar

The date and time when the quote was deleted.

Member Of

InvoiceLine object ● Quote object ● QuoteLine object