OBJECT
DiscountAction
A discount 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 type DiscountAction { 2 Int! : 3 4 Boolean! : 5 6 # Required permission: Discount:read 7 DiscountAction : 8 9 DiscountActionContinueStrategy! : 10 11 # Required permission: Discount:read 12 # 13 # All elements are always returned 14 DiscountActionCriteria!]! : [ 15 16 # Required permission: Discount:read 17 DiscountActionResult : 18 19 }
link Required by
- Discount
- DiscountAction A discount 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.