OrderFinancialLine
A line item on an order's accounting document (OrderFinancial). When the
document has not been persisted yet, id is null and the line is derived from
the order item.
type OrderFinancialLine {
id: ID
lineTotalMonetary: MonetaryValue
product: Product
productId: ID
quantity: Decimal!
sku: String
unitPriceMonetary: MonetaryValue
}
Fields
OrderFinancialLine.id ● ID scalar common
The line id. Null when the line is derived and not yet persisted.
OrderFinancialLine.lineTotalMonetary ● MonetaryValue object common
The line total (unit price × quantity).
OrderFinancialLine.product ● Product object products
The product for this line. User must have the read_product permission.
OrderFinancialLine.productId ● ID scalar common
OrderFinancialLine.quantity ● Decimal! non-null scalar common
OrderFinancialLine.sku ● String scalar common
OrderFinancialLine.unitPriceMonetary ● MonetaryValue object common
The unit price of the line item.
Member Of
OrderFinancialDocument object