INPUT_OBJECT

VoucherActionResultPriceDiscountInput

link GraphQL Schema definition

1input VoucherActionResultPriceDiscountInput {
2
3# Used for non reusable vouchers that reduce the value of an order by a set amount.
4priceOff: [VoucherActionPricelistValueInput!]
5
6# Used for reusable vouchers, such as gift certificates.
7# Used up voucher that get refilled will have number of usages automatically increased
8reusablePriceOff: VoucherActionResultReusablePriceOff
9
10fixedPrice: VoucherActionResultFixedPriceDiscountInput
11
12percentOff: Float
13
14originalPercentOff: Float
15
16originalPercentOffExcludingCampaigns: Float
17}