Interface SetCustomShippingMethodChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetCustomShippingMethodChangeImpl

public interface SetCustomShippingMethodChange extends Change

Change triggered by the Set Custom ShippingMethod update action.


Example to create an instance using the builder pattern

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