INTERFACE
DiscountAction
A voucher action can either be an entry point itself, or a "sub-action" of some other entry point action.
On a flat list of actions, a sub-action's entrypoint is the recent one above it on the list. You can also check
the sub-action's entry point directly via entryPoint field.
link GraphQL Schema definition
1 interface DiscountAction { 2 : Int! 3 4 : Boolean! 5 6 # Required permission: Voucher:read 7 : VoucherAction 8 9 : VoucherActionContinueStrategy! 10 11 # Required permission: Voucher:read 12 # 13 # All elements are always returned 14 : [VoucherActionCriteria!]! 15 16 # Required permission: Voucher:read 17 : VoucherActionResult 18 19 }