Class RemoveLocationChangeBuilder

java.lang.Object
com.commercetools.history.models.change.RemoveLocationChangeBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<RemoveLocationChange>

public class RemoveLocationChangeBuilder extends Object implements io.vrap.rmf.base.client.Builder<RemoveLocationChange>
RemoveLocationChangeBuilder
Example to create an instance using the builder pattern

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