Interface CartChangeTaxModeAction

All Superinterfaces:
CartUpdateAction, ResourceUpdateAction<CartUpdateAction>
All Known Implementing Classes:
CartChangeTaxModeActionImpl

public interface CartChangeTaxModeAction extends CartUpdateAction
  • When External TaxMode is changed to Platform or Disabled, all previously set external Tax Rates are removed.
  • When set to Platform, Line Items, Custom Line Items, and Shipping Method require a Tax Category with a Tax Rate for the Cart's shippingAddress.

Example to create an instance using the builder pattern

     CartChangeTaxModeAction cartChangeTaxModeAction = CartChangeTaxModeAction.builder()
             .taxMode(TaxMode.PLATFORM)
             .build()