Class SetAssetTagsChangeBuilder
java.lang.Object
com.commercetools.history.models.change.SetAssetTagsChangeBuilder
- All Implemented Interfaces:
Builder<SetAssetTagsChange>
SetAssetTagsChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SetAssetTagsChange setAssetTagsChange = SetAssetTagsChange.builder()
.change("{change}")
.plusPreviousValue(previousValueBuilder -> previousValueBuilder)
.plusNextValue(nextValueBuilder -> nextValueBuilder)
.asset(assetBuilder -> assetBuilder)
.catalogData("{catalogData}")
.variant("{variant}")
.build()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionasset(AssetChangeValue asset) Information about the updated Asset.Information about the updated Asset.build()builds SetAssetTagsChange with checking for non-null required valuesbuilds SetAssetTagsChange without checking for non-null required valuescatalogData(String catalogData) Product data that was updated.set the value to the changegetAsset()Information about the updated Asset.Product data that was updated.value of change}Value after the change.Value before the change.Identifier of the updated Product Variant.Value after the change.Value after the change.static SetAssetTagsChangeBuilderof()factory method for an instance of SetAssetTagsChangeBuilderstatic SetAssetTagsChangeBuilderof(SetAssetTagsChange template) create builder for SetAssetTagsChange instanceplusNextValue(String... nextValue) Value after the change.plusPreviousValue(String... previousValue) Value before the change.previousValue(String... previousValue) Value before the change.previousValue(List<String> previousValue) Value before the change.Identifier of the updated Product Variant.Information about the updated Asset.
-
Constructor Details
-
SetAssetTagsChangeBuilder
public SetAssetTagsChangeBuilder()
-
-
Method Details
-
change
set the value to the change- Parameters:
change- value to be set- Returns:
- Builder
-
previousValue
Value before the change.
- Parameters:
previousValue- value to be set- Returns:
- Builder
-
previousValue
Value before the change.
- Parameters:
previousValue- value to be set- Returns:
- Builder
-
plusPreviousValue
Value before the change.
- Parameters:
previousValue- value to be set- Returns:
- Builder
-
nextValue
Value after the change.
- Parameters:
nextValue- value to be set- Returns:
- Builder
-
nextValue
Value after the change.
- Parameters:
nextValue- value to be set- Returns:
- Builder
-
plusNextValue
Value after the change.
- Parameters:
nextValue- value to be set- Returns:
- Builder
-
asset
public SetAssetTagsChangeBuilder asset(Function<AssetChangeValueBuilder, AssetChangeValueBuilder> builder) Information about the updated Asset.
- Parameters:
builder- function to build the asset value- Returns:
- Builder
-
withAsset
public SetAssetTagsChangeBuilder withAsset(Function<AssetChangeValueBuilder, AssetChangeValue> builder) Information about the updated Asset.
- Parameters:
builder- function to build the asset value- Returns:
- Builder
-
asset
Information about the updated Asset.
- Parameters:
asset- value to be set- Returns:
- Builder
-
catalogData
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- Returns:
- Builder
-
variant
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
value of change}- Returns:
- change
-
getPreviousValue
Value before the change.
- Returns:
- previousValue
-
getNextValue
Value after the change.
- Returns:
- nextValue
-
getAsset
Information about the updated Asset.
- Returns:
- asset
-
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
-
build
builds SetAssetTagsChange with checking for non-null required values- Specified by:
buildin interfaceBuilder<SetAssetTagsChange>- Returns:
- SetAssetTagsChange
-
buildUnchecked
builds SetAssetTagsChange without checking for non-null required values- Returns:
- SetAssetTagsChange
-
of
factory method for an instance of SetAssetTagsChangeBuilder- Returns:
- builder
-
of
create builder for SetAssetTagsChange instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-