Interface ChangeDescriptionChange

All Superinterfaces:
Change
All Known Implementing Classes:
ChangeDescriptionChangeImpl

public interface ChangeDescriptionChange extends Change

Change triggered by the following update actions:

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

Example to create an instance using the builder pattern

     ChangeDescriptionChange changeDescriptionChange = ChangeDescriptionChange.builder()
             .change("{change}")
             .previousValue("{previousValue}")
             .nextValue("{nextValue}")
             .build()