OBJECT

OrderLineVoucher

link GraphQL Schema definition

1type OrderLineVoucher {
2# Required permission: Order:read
3#
4# Store restrictions apply.
5line: OrderLine!
6
7voucherName: String!
8
9voucherType: VoucherMethod!
10
11# Set for vouchers with method VoucherMethod.URL
12url: String
13
14# Set for vouchers with method VoucherMethod.CODE
15code: String
16
17appliedOn: VoucherActionResultApplyOn!
18
19unitPriceReduction: MonetaryValue!
20
21configuredPercent: Float
22
23# Required permission: Voucher:read
24voucherActionResult: VoucherActionResult
25
26# Required permission: Voucher:read
27#
28# Store restrictions apply.
29voucher: Voucher
30
31}