Interface SetPricesChange
- All Superinterfaces:
Change
Change triggered by the Set Prices update action.
Example to create an instance using the builder pattern
SetPricesChange setPricesChange = SetPricesChange.builder()
.change("{change}")
.plusPreviousValue(previousValueBuilder -> previousValueBuilder)
.plusNextValue(nextValueBuilder -> nextValueBuilder)
.catalogData("{catalogData}")
.variant("{variant}")
.plusAddedItems(addedItemsBuilder -> addedItemsBuilder)
.plusRemovedItems(removedItemsBuilder -> removedItemsBuilder)
.build()
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic SetPricesChangeBuilderbuilder()builder factory method for SetPricesChangestatic SetPricesChangeBuilderbuilder(SetPricesChange template) create builder for SetPricesChange instancecopyDeep()static SetPricesChangedeepCopy(SetPricesChange template) factory method to create a deep copy of SetPricesChangeElements added to the array.@NotNull StringProduct data that was updated.@NotNull StringType of change on a resource that is similar to the update action it relates to, where possible.Value after the change.Value before the change.Elements removed from the array.@NotNull StringgetType()Unique discriminator value to reliably deserialize the data type.@NotNull StringIdentifier of the updated Product Variant.static SetPricesChangeof()factory methodstatic SetPricesChangeof(SetPricesChange template) factory method to create a shallow copy SetPricesChangevoidsetAddedItems(Price... addedItems) Elements added to the array.voidsetAddedItems(List<Price> addedItems) Elements added to the array.voidsetCatalogData(String catalogData) Product data that was updated.voidset changevoidsetNextValue(Price... nextValue) Value after the change.voidsetNextValue(List<Price> nextValue) Value after the change.voidsetPreviousValue(Price... previousValue) Value before the change.voidsetPreviousValue(List<Price> previousValue) Value before the change.voidsetRemovedItems(Price... removedItems) Elements removed from the array.voidsetRemovedItems(List<Price> removedItems) Elements removed from the array.voidsetVariant(String variant) Identifier of the updated Product Variant.static com.fasterxml.jackson.core.type.TypeReference<SetPricesChange>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithSetPricesChange(Function<SetPricesChange, T> helper) accessor map functionMethods inherited from interface com.commercetools.history.models.change.Change
withChange
-
Field Details
-
SET_PRICES_CHANGE
discriminator value for SetPricesChange- See Also:
-
-
Method Details
-
getType
Description copied from interface:ChangeUnique discriminator value to reliably deserialize the data type.
-
getChange
Description copied from interface:ChangeType of change on a resource that is similar to the update action it relates to, where possible. It is not a unique identifier for the data structure, for example, the
setDescriptionchange can occur with a localized and non-localized representation.Records can be filtered by this value using the
changesquery parameter. -
getPreviousValue
Value before the change.
- Returns:
- previousValue
-
getNextValue
Value after the change.
- Returns:
- nextValue
-
getCatalogData
Product data that was updated.
staged, if the staged ProductCatalogData was updated.current, if the current ProductCatalogData was updated.
- Returns:
- catalogData
-
getVariant
Identifier of the updated Product Variant.
This field holds the SKU, if defined; otherwise the key; otherwise the ID.
- Returns:
- variant
-
getAddedItems
Elements added to the array.
- Returns:
- addedItems
-
getRemovedItems
Elements removed from the array.
- Returns:
- removedItems
-
setChange
set change -
setPreviousValue
Value before the change.
- Parameters:
previousValue- values to be set
-
setPreviousValue
Value before the change.
- Parameters:
previousValue- values to be set
-
setNextValue
Value after the change.
- Parameters:
nextValue- values to be set
-
setNextValue
Value after the change.
- Parameters:
nextValue- values to be set
-
setCatalogData
Product data that was updated.
staged, if the staged ProductCatalogData was updated.current, if the current ProductCatalogData was updated.
- Parameters:
catalogData- value to be set
-
setVariant
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
-
setAddedItems
Elements added to the array.
- Parameters:
addedItems- values to be set
-
setAddedItems
Elements added to the array.
- Parameters:
addedItems- values to be set
-
setRemovedItems
Elements removed from the array.
- Parameters:
removedItems- values to be set
-
setRemovedItems
Elements removed from the array.
- Parameters:
removedItems- values to be set
-
of
factory method- Returns:
- instance of SetPricesChange
-
of
factory method to create a shallow copy SetPricesChange- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
SetPricesChange copyDeep() -
deepCopy
factory method to create a deep copy of SetPricesChange- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for SetPricesChange- Returns:
- builder
-
builder
create builder for SetPricesChange instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withSetPricesChange
accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-