Interface SetLocalizedDescriptionChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetLocalizedDescriptionChangeImpl

public interface SetLocalizedDescriptionChange extends Change

Change triggered by the following update actions:

  • Set Description on Cart Discounts.
  • Set Description on Categories.
  • Set Description on Discount Codes.
  • Set Description on Products.
  • Set Description on Product Discounts.
  • Set Description on Shopping Lists.
  • Set Description on States.
  • Set Description on Tax Categories.
  • Set Description on Types.
  • Set Description on Zones.

Example to create an instance using the builder pattern

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