Interface CartChangePriceRoundingModeAction

All Superinterfaces:
CartUpdateAction, ResourceUpdateAction<CartUpdateAction>

public interface CartChangePriceRoundingModeAction extends CartUpdateAction

Changing the price rounding mode leads to recalculation of taxes.


Example to create an instance using the builder pattern

     CartChangePriceRoundingModeAction cartChangePriceRoundingModeAction = CartChangePriceRoundingModeAction.builder()
             .priceRoundingMode(RoundingMode.HALF_EVEN)
             .build()