Interface ShippingMethodTaxAmountChangeValue


public interface ShippingMethodTaxAmountChangeValue
ShippingMethodTaxAmountChangeValue
Example to create an instance using the builder pattern

     ShippingMethodTaxAmountChangeValue shippingMethodTaxAmountChangeValue = ShippingMethodTaxAmountChangeValue.builder()
             .taxedPrice(taxedPriceBuilder -> taxedPriceBuilder)
             .taxRate(taxRateBuilder -> taxRateBuilder)
             .build()
 
  • Method Details