Class StandalonePriceChangeValueChangeBuilder

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

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

     StandalonePriceChangeValueChange standalonePriceChangeValueChange = StandalonePriceChangeValueChange.builder()
             .change("{change}")
             .staged(true)
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()