Interface SetAssetDescriptionChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetAssetDescriptionChangeImpl

public interface SetAssetDescriptionChange extends Change

Change triggered by the following update actions:

  • Set Asset Description on Categories.
  • Set Asset Description on Products.

Example to create an instance using the builder pattern

     SetAssetDescriptionChange setAssetDescriptionChange = SetAssetDescriptionChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .asset(assetBuilder -> assetBuilder)
             .build()