Class AddBillingAddressIdChangeBuilder

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

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

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