Developer Preview
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
This Apex object exposes details about the buyer interactions that have happened within the CartExtension.Cart since the last CartExtension.CartCalculate run. It provides information that can be used to optimize the business logic in custom calculators.
Indicates whether Checkout has started
| Type | Description |
|---|---|
Boolean | s Boolean |
Get the list of changed Delivery Groups with detailed info about the changes
| Type | Description |
|---|---|
List<CartDeliveryGroupChange> | s List |
Get the list of changed Cart Items with detailed info about the changes
| Type | Description |
|---|---|
List<CartItemChange> | s List |
Get the list of changed Coupons with detailed info about the changes
| Type | Description |
|---|---|
List<CouponChange> | s List |
Builds an instance of BuyerActionDetails. This should only be used for Apex unit testing.
Developer Preview