OrderTotals
No description
type OrderTotals {
orderId: Int! @deprecated
gross: Float!
net: Float!
tax: Float!
discountType: OrderDiscountType!
discountValue: Float!
taxPercentages: [OrderTotalTaxPercentage!]!
}
Fields
OrderTotals.orderId ● Int! deprecated non-null scalar
DEPRECATED
Use the parent Order.id instead
The orderId of this Order
OrderTotals.gross ● Float! non-null scalar
The total of this Order excluding tax
OrderTotals.net ● Float! non-null scalar
The total of this Order including tax
OrderTotals.tax ● Float! non-null scalar
The total amount of tax for this Order
OrderTotals.discountType ● OrderDiscountType! non-null enum
The type of global discount
OrderTotals.discountValue ● Float! non-null scalar
The discount value, can be absolute or a percentage depending on the discountType
OrderTotals.taxPercentages ● [OrderTotalTaxPercentage!]! non-null object
The totals per tax percentage
Member Of
Order object