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