Interface SetProductPriceCustomTypeChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetProductPriceCustomTypeChangeImpl

public interface SetProductPriceCustomTypeChange extends Change

Change triggered by the Set Price Custom Type update action.


Example to create an instance using the builder pattern

     SetProductPriceCustomTypeChange setProductPriceCustomTypeChange = SetProductPriceCustomTypeChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .catalogData("{catalogData}")
             .build()