OBJECT

OrderLineVoucher

link GraphQL Schema definition

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