Interface ChangeLocalizedDescriptionChange

All Superinterfaces:
Change
All Known Implementing Classes:
ChangeLocalizedDescriptionChangeImpl

public interface ChangeLocalizedDescriptionChange extends Change

Change triggered by the following update actions:

  • Change Description on Product Types.
  • Change Description on Channels.

Example to create an instance using the builder pattern

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