OBJECT

VoucherAction

link GraphQL Schema definition

1type VoucherAction implements DiscountAction {
2id: Int!
3
4isEntryPoint: Boolean!
5
6# Required permission: Voucher:read
7entryPoint: VoucherAction
8
9continueStrategy: VoucherActionContinueStrategy!
10
11# Required permission: Voucher:read
12#
13# All elements are always returned
14criteria: [VoucherActionCriteria!]!
15
16# Required permission: Voucher:read
17result: VoucherActionResult
18
19}