Interface SetShippingMethodChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetShippingMethodChangeImpl

public interface SetShippingMethodChange extends Change

Change triggered by the Set ShippingMethod update action.


Example to create an instance using the builder pattern

     SetShippingMethodChange setShippingMethodChange = SetShippingMethodChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()