OBJECT

OrderTotals

link GraphQL Schema definition

1type OrderTotals {
2# Current quantity excluding cancelled units
3quantity: Int!
4
5# Original quantity including cancelled units
6originalQuantity: Int!
7
8cancelledQuantity: Int!
9
10unexpeditedQuantity: Int!
11
12weight: Weight
13
14lineValues: MonetaryValue!
15
16handling: MonetaryValue!
17
18shipping: MonetaryValue!
19
20discounts: MonetaryValue!
21
22taxAdded: MonetaryValue!
23
24taxDeducted: MonetaryValue!
25
26taxIncluded: MonetaryValue!
27
28}