Interface ProductTailoringNameSetMessagePayload
- All Superinterfaces:
MessagePayload
,MessagePayloadMixin
Generated after a successful Product Tailoring Set Name update action.
Example to create an instance using the builder pattern
ProductTailoringNameSetMessagePayload productTailoringNameSetMessagePayload = ProductTailoringNameSetMessagePayload.builder()
.store(storeBuilder -> storeBuilder)
.product(productBuilder -> productBuilder)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ProductTailoringNameSetMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductTailoringNameSetMessagePayloadbuilder
(ProductTailoringNameSetMessagePayload template) create builder for ProductTailoringNameSetMessagePayload instancefactory method to create a deep copy of ProductTailoringNameSetMessagePayload@Valid LocalizedString
getName()
The name of the Product Tailoring after the Set Name update action.@Valid LocalizedString
The name of the ProductTailoring before the Set Name update action.@NotNull @Valid ProductReference
Reference to the Product the Product Tailoring belongs to.User-defined unique identifier of the Product this Product Tailoring belongs to.@NotNull @Valid StoreKeyReference
getStore()
The Store to which the Product Tailoring belongs.of()
factory methodof
(ProductTailoringNameSetMessagePayload template) factory method to create a shallow copy ProductTailoringNameSetMessagePayloadvoid
setName
(LocalizedString name) The name of the Product Tailoring after the Set Name update action.void
setOldName
(LocalizedString oldName) The name of the ProductTailoring before the Set Name update action.void
setProduct
(ProductReference product) Reference to the Product the Product Tailoring belongs to.void
setProductKey
(String productKey) User-defined unique identifier of the Product this Product Tailoring belongs to.void
setStore
(StoreKeyReference store) The Store to which the Product Tailoring belongs.static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringNameSetMessagePayload>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayload
Methods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
as
-
Field Details
-
PRODUCT_TAILORING_NAME_SET
discriminator value for ProductTailoringNameSetMessagePayload- See Also:
-
-
Method Details
-
getStore
The Store to which the Product Tailoring belongs.
- Returns:
- store
-
getProductKey
String getProductKey()User-defined unique identifier of the Product this Product Tailoring belongs to.
- Returns:
- productKey
-
getProduct
Reference to the Product the Product Tailoring belongs to.
- Returns:
- product
-
getName
The name of the Product Tailoring after the Set Name update action.
- Returns:
- name
-
getOldName
The name of the ProductTailoring before the Set Name update action.
- Returns:
- oldName
-
setStore
The Store to which the Product Tailoring belongs.
- Parameters:
store
- value to be set
-
setProductKey
User-defined unique identifier of the Product this Product Tailoring belongs to.
- Parameters:
productKey
- value to be set
-
setProduct
Reference to the Product the Product Tailoring belongs to.
- Parameters:
product
- value to be set
-
setName
The name of the Product Tailoring after the Set Name update action.
- Parameters:
name
- value to be set
-
setOldName
The name of the ProductTailoring before the Set Name update action.
- Parameters:
oldName
- value to be set
-
of
factory method- Returns:
- instance of ProductTailoringNameSetMessagePayload
-
of
factory method to create a shallow copy ProductTailoringNameSetMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ProductTailoringNameSetMessagePayload deepCopy(@Nullable ProductTailoringNameSetMessagePayload template) factory method to create a deep copy of ProductTailoringNameSetMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductTailoringNameSetMessagePayload- Returns:
- builder
-
builder
static ProductTailoringNameSetMessagePayloadBuilder builder(ProductTailoringNameSetMessagePayload template) create builder for ProductTailoringNameSetMessagePayload instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductTailoringNameSetMessagePayload
default <T> T withProductTailoringNameSetMessagePayload(Function<ProductTailoringNameSetMessagePayload, 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<ProductTailoringNameSetMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-