Interface CartSetShippingMethodTaxRateAction

All Superinterfaces:
CartUpdateAction, ResourceUpdateAction<CartUpdateAction>

public interface CartSetShippingMethodTaxRateAction extends CartUpdateAction

A Shipping Method Tax Rate can be set if the Cart has the External TaxMode.


Example to create an instance using the builder pattern

     CartSetShippingMethodTaxRateAction cartSetShippingMethodTaxRateAction = CartSetShippingMethodTaxRateAction.builder()
             .build()
 
  • Field Details

    • SET_SHIPPING_METHOD_TAX_RATE

      static final String SET_SHIPPING_METHOD_TAX_RATE
      discriminator value for CartSetShippingMethodTaxRateAction
      See Also:
  • Method Details

    • getShippingKey

      String getShippingKey()

      key of the ShippingMethod to update. This is required for Carts with Multiple ShippingMode.

      Returns:
      shippingKey
    • getExternalTaxRate

      @Valid @Valid ExternalTaxRateDraft getExternalTaxRate()

      Value to set. If empty, any existing value is removed.

      Returns:
      externalTaxRate
    • setShippingKey

      void setShippingKey(String shippingKey)

      key of the ShippingMethod to update. This is required for Carts with Multiple ShippingMode.

      Parameters:
      shippingKey - value to be set
    • setExternalTaxRate

      void setExternalTaxRate(ExternalTaxRateDraft externalTaxRate)

      Value to set. If empty, any existing value is removed.

      Parameters:
      externalTaxRate - value to be set
    • of

      factory method
      Returns:
      instance of CartSetShippingMethodTaxRateAction
    • of

      factory method to create a shallow copy CartSetShippingMethodTaxRateAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of CartSetShippingMethodTaxRateAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for CartSetShippingMethodTaxRateAction
      Returns:
      builder
    • builder

      create builder for CartSetShippingMethodTaxRateAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withCartSetShippingMethodTaxRateAction

      default <T> T withCartSetShippingMethodTaxRateAction(Function<CartSetShippingMethodTaxRateAction,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<CartSetShippingMethodTaxRateAction> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference