Class StandalonePriceSetDiscountedPriceChangeBuilder

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

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

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