Interface SetShippingInfoDiscountedPriceChange

All Superinterfaces:
Change

public interface SetShippingInfoDiscountedPriceChange extends Change

Change triggered when a shipping price is modified due to a discount.


Example to create an instance using the builder pattern

     SetShippingInfoDiscountedPriceChange setShippingInfoDiscountedPriceChange = SetShippingInfoDiscountedPriceChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()
 
  • Field Details

    • SET_SHIPPING_INFO_DISCOUNTED_PRICE_CHANGE

      static final String SET_SHIPPING_INFO_DISCOUNTED_PRICE_CHANGE
      discriminator value for SetShippingInfoDiscountedPriceChange
      See Also:
  • Method Details