INTERFACE

AppliedVoucher

link GraphQL Schema definition

1interface AppliedVoucher {
2value: MonetaryValue!
3
4# Arguments
5# format: ISO-8601
6date(format: String = "Y-m-d\\TH:i:sP"): DateTimeTz!
7
8paramsJSON: String
9
10# Required permission: Voucher:read
11#
12# Store restrictions apply.
13voucher: Voucher
14
15# Required permission: Voucher:read
16voucherActionResult: VoucherActionResult
17
18# Required permission: Order:read
19#
20# Store restrictions apply.
21order: Order
22
23voucherName: String
24
25voucherMethod: VoucherMethod
26
27# Set for vouchers with method VoucherMethod.URL
28url: String
29
30# Set for vouchers with method VoucherMethod.CODE
31code: String
32
33}