Interface ShippingMethodSetLocalizedDescriptionChange

All Superinterfaces:
Change

public interface ShippingMethodSetLocalizedDescriptionChange extends Change

Change triggered by the Set Localized Description update action.


Example to create an instance using the builder pattern

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