OBJECT

CalculateVouchersLineDiscounted

link GraphQL Schema definition

1type CalculateVouchersLineDiscounted implements CalculateVouchersResult {
2# Required permission: Voucher:read
3voucherActionResult: VoucherActionResult!
4
5# Required permission: Voucher:read
6#
7# Store restrictions apply.
8voucher: Voucher!
9
10subvoucher: Subvoucher
11
12lineReference: String!
13
14quantity: Int!
15
16# total of this line before this result
17previousTotal: MonetaryValue!
18
19# total value reduction given by this result
20priceReduction: MonetaryValue!
21
22# how unit price was affected by this result
23#
24# All elements are always returned
25unitPrices: [CalculateVouchersUnitPriceDiscount!]!
26
27# if this was a percent off, this value contains the percentage configured in the result
28configuredPercent: Float
29
30}

link Required by

This element is not required by anyone