Interface SetProductPriceCustomFieldChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetProductPriceCustomFieldChangeImpl

public interface SetProductPriceCustomFieldChange extends Change

Change triggered by the Set Price CustomField update action.


Example to create an instance using the builder pattern

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