Class SetGeoLocationChangeBuilder

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

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

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