Interface ProductSetAttributeAction
- All Superinterfaces:
ProductUpdateAction,ResourceUpdateAction<ProductUpdateAction>
Either variantId or sku is required.
Example to create an instance using the builder pattern
ProductSetAttributeAction productSetAttributeAction = ProductSetAttributeAction.builder()
.name("{name}")
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ProductSetAttributeAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ProductSetAttributeActionbuilder(ProductSetAttributeAction template) create builder for ProductSetAttributeAction instancecopyDeep()static ProductSetAttributeActiondeepCopy(ProductSetAttributeAction template) factory method to create a deep copy of ProductSetAttributeAction@NotNull StringgetName()Name of the Attribute to set.getSku()Theskuof the ProductVariant to update.Iftrue, only the staged Attribute is set.getValue()Value to set for the Attribute.Theidof the ProductVariant to update.static ProductSetAttributeActionof()factory methodstatic ProductSetAttributeActionof(ProductSetAttributeAction template) factory method to create a shallow copy ProductSetAttributeActionstatic ProductSetAttributeActionstatic ProductSetAttributeActionofUnsetAttribute(Long variantId, String name) static ProductSetAttributeActionofUnsetAttribute(Long variantId, String name, Boolean staged) static ProductSetAttributeActionofUnsetAttributeForSku(String sku, String name) static ProductSetAttributeActionofUnsetAttributeForSku(String sku, String name, Boolean staged) static ProductSetAttributeActionofUnsetAttributeForVariantId(Long variantId, String name) static ProductSetAttributeActionofVariantId(Long variantId, String name, JsonNode value, Boolean staged) voidName of the Attribute to set.voidTheskuof the ProductVariant to update.voidIftrue, only the staged Attribute is set.voidValue to set for the Attribute.voidsetVariantId(Long variantId) Theidof the ProductVariant to update.static com.fasterxml.jackson.core.type.TypeReference<ProductSetAttributeAction>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.product.ProductUpdateAction
getAction, withProductUpdateActionMethods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
SET_ATTRIBUTE
discriminator value for ProductSetAttributeAction- See Also:
-
-
Method Details
-
getVariantId
Long getVariantId()The
idof the ProductVariant to update.- Returns:
- variantId
-
getSku
String getSku()The
skuof the ProductVariant to update.- Returns:
- sku
-
getName
Name of the Attribute to set.
- Returns:
- name
-
getValue
Object getValue()Value to set for the Attribute. If empty, any existing value will be removed.
The AttributeType determines the format of the Attribute
valueto be provided:- For Enum Type and Localized Enum Type, use the
keyof the Plain Enum Value or Localized Enum Value object or the complete object asvalue. - For Localizable Text Type, use the LocalizedString object as
value. - For Money Type Attributes, use the Money object as
value. - For Set Type Attributes, use the entire
setobject asvalue. - For Nested Type Attributes, use the list of values of all Attributes of the nested Product as
value. - For Reference Type Attributes, use the Reference object as
value.
- Returns:
- value
- For Enum Type and Localized Enum Type, use the
-
getStaged
Boolean getStaged()If
true, only the staged Attribute is set. Iffalse, both the current and staged Attributes are set.- Returns:
- staged
-
setVariantId
The
idof the ProductVariant to update.- Parameters:
variantId- value to be set
-
setSku
The
skuof the ProductVariant to update.- Parameters:
sku- value to be set
-
setName
Name of the Attribute to set.
- Parameters:
name- value to be set
-
setValue
Value to set for the Attribute. If empty, any existing value will be removed.
The AttributeType determines the format of the Attribute
valueto be provided:- For Enum Type and Localized Enum Type, use the
keyof the Plain Enum Value or Localized Enum Value object or the complete object asvalue. - For Localizable Text Type, use the LocalizedString object as
value. - For Money Type Attributes, use the Money object as
value. - For Set Type Attributes, use the entire
setobject asvalue. - For Nested Type Attributes, use the list of values of all Attributes of the nested Product as
value. - For Reference Type Attributes, use the Reference object as
value.
- Parameters:
value- value to be set
- For Enum Type and Localized Enum Type, use the
-
setStaged
If
true, only the staged Attribute is set. Iffalse, both the current and staged Attributes are set.- Parameters:
staged- value to be set
-
of
factory method- Returns:
- instance of ProductSetAttributeAction
-
of
factory method to create a shallow copy ProductSetAttributeAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ProductSetAttributeAction copyDeep()- Specified by:
copyDeepin interfaceProductUpdateAction
-
deepCopy
factory method to create a deep copy of ProductSetAttributeAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductSetAttributeAction- Returns:
- builder
-
builder
create builder for ProductSetAttributeAction instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withProductSetAttributeAction
accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
ofVariantId
static ProductSetAttributeAction ofVariantId(Long variantId, String name, JsonNode value, Boolean staged) -
ofSku
-
ofUnsetAttribute
-
ofUnsetAttribute
-
ofUnsetAttributeForVariantId
-
ofUnsetAttributeForSku
-
ofUnsetAttributeForSku
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-