Class RemovePriceChangeBuilder

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

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

     RemovePriceChange removePriceChange = RemovePriceChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .catalogData("{catalogData}")
             .priceId("{priceId}")
             .build()
 
  • Constructor Details

    • RemovePriceChangeBuilder

      public RemovePriceChangeBuilder()
  • Method Details

    • change

      public RemovePriceChangeBuilder change(String change)
      set the value to the change
      Parameters:
      change - value to be set
      Returns:
      Builder
    • previousValue

      Value before the change.

      Parameters:
      builder - function to build the previousValue value
      Returns:
      Builder
    • withPreviousValue

      public RemovePriceChangeBuilder withPreviousValue(Function<PriceBuilder,Price> builder)

      Value before the change.

      Parameters:
      builder - function to build the previousValue value
      Returns:
      Builder
    • previousValue

      public RemovePriceChangeBuilder previousValue(Price previousValue)

      Value before the change.

      Parameters:
      previousValue - value to be set
      Returns:
      Builder
    • nextValue

      Value after the change.

      Parameters:
      builder - function to build the nextValue value
      Returns:
      Builder
    • withNextValue

      public RemovePriceChangeBuilder withNextValue(Function<PriceBuilder,Price> builder)

      Value after the change.

      Parameters:
      builder - function to build the nextValue value
      Returns:
      Builder
    • nextValue

      public RemovePriceChangeBuilder nextValue(Price nextValue)

      Value after the change.

      Parameters:
      nextValue - value to be set
      Returns:
      Builder
    • catalogData

      public RemovePriceChangeBuilder catalogData(String catalogData)
      • staged, if the staged ProductCatalogData was updated.
      • current, if the current ProductCatalogData was updated.
      Parameters:
      catalogData - value to be set
      Returns:
      Builder
    • priceId

      public RemovePriceChangeBuilder priceId(String priceId)

      id of the Embedded Price.

      Parameters:
      priceId - value to be set
      Returns:
      Builder
    • getChange

      public String getChange()
      value of change}
      Returns:
      change
    • getPreviousValue

      public Price getPreviousValue()

      Value before the change.

      Returns:
      previousValue
    • getNextValue

      public Price getNextValue()

      Value after the change.

      Returns:
      nextValue
    • getCatalogData

      public String getCatalogData()
      • staged, if the staged ProductCatalogData was updated.
      • current, if the current ProductCatalogData was updated.
      Returns:
      catalogData
    • getPriceId

      public String getPriceId()

      id of the Embedded Price.

      Returns:
      priceId
    • build

      public RemovePriceChange build()
      builds RemovePriceChange with checking for non-null required values
      Specified by:
      build in interface Builder<RemovePriceChange>
      Returns:
      RemovePriceChange
    • buildUnchecked

      public RemovePriceChange buildUnchecked()
      builds RemovePriceChange without checking for non-null required values
      Returns:
      RemovePriceChange
    • of

      public static RemovePriceChangeBuilder of()
      factory method for an instance of RemovePriceChangeBuilder
      Returns:
      builder
    • of

      public static RemovePriceChangeBuilder of(RemovePriceChange template)
      create builder for RemovePriceChange instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder