Interface CartChangeTaxRoundingModeAction

All Superinterfaces:
CartUpdateAction, ResourceUpdateAction<CartUpdateAction>

public interface CartChangeTaxRoundingModeAction extends CartUpdateAction

Changing the tax rounding mode leads to recalculation of taxes.


Example to create an instance using the builder pattern

     CartChangeTaxRoundingModeAction cartChangeTaxRoundingModeAction = CartChangeTaxRoundingModeAction.builder()
             .taxRoundingMode(RoundingMode.HALF_EVEN)
             .build()