Interface ProductChangeNameAction
- All Superinterfaces:
ProductUpdateAction
,ResourceUpdateAction<ProductUpdateAction>
- All Known Implementing Classes:
ProductChangeNameActionImpl
ProductChangeNameAction
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ProductChangeNameAction productChangeNameAction = ProductChangeNameAction.builder()
.name(nameBuilder -> nameBuilder)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ProductChangeNameAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductChangeNameActionbuilder
(ProductChangeNameAction template) create builder for ProductChangeNameAction instancestatic ProductChangeNameAction
deepCopy
(ProductChangeNameAction template) factory method to create a deep copy of ProductChangeNameAction@NotNull @Valid LocalizedString
getName()
Value to set.Iftrue
, only the stagedname
is updated.static ProductChangeNameAction
of()
factory methodstatic ProductChangeNameAction
of
(ProductChangeNameAction template) factory method to create a shallow copy ProductChangeNameActionvoid
setName
(LocalizedString name) Value to set.void
Iftrue
, only the stagedname
is updated.static com.fasterxml.jackson.core.type.TypeReference<ProductChangeNameAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.product.ProductUpdateAction
getAction, withProductUpdateAction
Methods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
CHANGE_NAME
discriminator value for ProductChangeNameAction- See Also:
-
-
Method Details
-
getName
Value to set. Must not be empty.
- Returns:
- name
-
getStaged
Boolean getStaged()If
true
, only the stagedname
is updated. Iffalse
, both the current and stagedname
are updated.- Returns:
- staged
-
setName
Value to set. Must not be empty.
- Parameters:
name
- value to be set
-
setStaged
If
true
, only the stagedname
is updated. Iffalse
, both the current and stagedname
are updated.- Parameters:
staged
- value to be set
-
of
factory method- Returns:
- instance of ProductChangeNameAction
-
of
factory method to create a shallow copy ProductChangeNameAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of ProductChangeNameAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductChangeNameAction- Returns:
- builder
-
builder
create builder for ProductChangeNameAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductChangeNameAction
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
-