Interface ProductTailoringSetAttributeAction
- All Superinterfaces:
ProductTailoringUpdateAction
Either variantId
or sku
is required.
Example to create an instance using the builder pattern
ProductTailoringSetAttributeAction productTailoringSetAttributeAction = ProductTailoringSetAttributeAction.builder()
.name("{name}")
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ProductTailoringSetAttributeAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductTailoringSetAttributeActionbuilder
(ProductTailoringSetAttributeAction template) create builder for ProductTailoringSetAttributeAction instancedeepCopy
(ProductTailoringSetAttributeAction template) factory method to create a deep copy of ProductTailoringSetAttributeAction@NotNull String
getName()
The name of the Attribute to set.getSku()
Thesku
of the ProductVariant to update.Iftrue
, only the staged Attribute is set.getValue()
Value to set for the Attribute.Theid
of the ProductVariant to update.of()
factory methodof
(ProductTailoringSetAttributeAction template) factory method to create a shallow copy ProductTailoringSetAttributeActionvoid
The name of the Attribute to set.void
Thesku
of the ProductVariant to update.void
Iftrue
, only the staged Attribute is set.void
Value to set for the Attribute.void
setVariantId
(Long variantId) Theid
of the ProductVariant to update.static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringSetAttributeAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.product_tailoring.ProductTailoringUpdateAction
getAction, withProductTailoringUpdateAction
-
Field Details
-
SET_ATTRIBUTE
discriminator value for ProductTailoringSetAttributeAction- See Also:
-
-
Method Details
-
getVariantId
Long getVariantId()The
id
of the ProductVariant to update. Required ifsku
is absent.- Returns:
- variantId
-
getSku
String getSku()The
sku
of the ProductVariant to update. Required ifvariantId
is absent.- Returns:
- sku
-
getName
The 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
value
to be provided:- For Enum Type and Localized Enum Type, use the
key
of the Plain Enum Value or Localized Enum Value objects, or the complete objects 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
set
object asvalue
. - For Reference Type Attributes, use the Reference object as
value
.
Tailoring of Nested Type Attributes is not supported.
- Returns:
- value
- For Enum Type and Localized Enum Type, use the
-
getStaged
Boolean getStaged()If
true
, only the staged Attribute is set. Iffalse
, both current and staged Attribute is set.- Returns:
- staged
-
setVariantId
The
id
of the ProductVariant to update. Required ifsku
is absent.- Parameters:
variantId
- value to be set
-
setSku
The
sku
of the ProductVariant to update. Required ifvariantId
is absent.- Parameters:
sku
- value to be set
-
setName
The 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
value
to be provided:- For Enum Type and Localized Enum Type, use the
key
of the Plain Enum Value or Localized Enum Value objects, or the complete objects 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
set
object asvalue
. - For Reference Type Attributes, use the Reference object as
value
.
Tailoring of Nested Type Attributes is not supported.
- 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 current and staged Attribute is set.- Parameters:
staged
- value to be set
-
of
factory method- Returns:
- instance of ProductTailoringSetAttributeAction
-
of
factory method to create a shallow copy ProductTailoringSetAttributeAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ProductTailoringSetAttributeAction deepCopy(@Nullable ProductTailoringSetAttributeAction template) factory method to create a deep copy of ProductTailoringSetAttributeAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductTailoringSetAttributeAction- Returns:
- builder
-
builder
static ProductTailoringSetAttributeActionBuilder builder(ProductTailoringSetAttributeAction template) create builder for ProductTailoringSetAttributeAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductTailoringSetAttributeAction
default <T> T withProductTailoringSetAttributeAction(Function<ProductTailoringSetAttributeAction, T> helper) accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringSetAttributeAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-