Class RemovePriceChangeBuilder

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

@Deprecated public class RemovePriceChangeBuilder extends Object implements Builder<RemovePriceChange>
Deprecated.
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}")
             .variant("{variant}")
             .build()
 
  • Constructor Details

    • RemovePriceChangeBuilder

      public RemovePriceChangeBuilder()
      Deprecated.
  • Method Details

    • change

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

      Deprecated.

      Value before the change.

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

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

      Value before the change.

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

      public RemovePriceChangeBuilder previousValue(Price previousValue)
      Deprecated.

      Value before the change.

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

      Deprecated.

      Value after the change.

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

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

      Value after the change.

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

      public RemovePriceChangeBuilder nextValue(Price nextValue)
      Deprecated.

      Value after the change.

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

      public RemovePriceChangeBuilder catalogData(String catalogData)
      Deprecated.

      Product data that was updated.

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

      public RemovePriceChangeBuilder priceId(String priceId)
      Deprecated.

      id of the Embedded Price.

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

      public RemovePriceChangeBuilder variant(String variant)
      Deprecated.

      Identifier of the updated Product Variant.

      This field holds the SKU, if defined; otherwise the key; otherwise the ID.

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

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

      public Price getPreviousValue()
      Deprecated.

      Value before the change.

      Returns:
      previousValue
    • getNextValue

      public Price getNextValue()
      Deprecated.

      Value after the change.

      Returns:
      nextValue
    • getCatalogData

      public String getCatalogData()
      Deprecated.

      Product data that was updated.

      Returns:
      catalogData
    • getPriceId

      public String getPriceId()
      Deprecated.

      id of the Embedded Price.

      Returns:
      priceId
    • getVariant

      public String getVariant()
      Deprecated.

      Identifier of the updated Product Variant.

      This field holds the SKU, if defined; otherwise the key; otherwise the ID.

      Returns:
      variant
    • build

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

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

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

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