Class AddShippingAddressIdChangeBuilder

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

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

     AddShippingAddressIdChange addShippingAddressIdChange = AddShippingAddressIdChange.builder()
             .change("{change}")
             .plusPreviousValue(previousValueBuilder -> previousValueBuilder)
             .plusNextValue(nextValueBuilder -> nextValueBuilder)
             .address(addressBuilder -> addressBuilder)
             .build()