Class ShippingMethodSetLocalizedDescriptionChangeBuilder

java.lang.Object
com.commercetools.history.models.change.ShippingMethodSetLocalizedDescriptionChangeBuilder
All Implemented Interfaces:
Builder<ShippingMethodSetLocalizedDescriptionChange>

public class ShippingMethodSetLocalizedDescriptionChangeBuilder extends Object implements Builder<ShippingMethodSetLocalizedDescriptionChange>
ShippingMethodSetLocalizedDescriptionChangeBuilder
Example to create an instance using the builder pattern

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