Interface ProductTailoringSlugSetMessagePayload
- All Superinterfaces:
MessagePayload,MessagePayloadMixin
Generated after a successful Product Tailoring Set Slug update action.
Example to create an instance using the builder pattern
ProductTailoringSlugSetMessagePayload productTailoringSlugSetMessagePayload = ProductTailoringSlugSetMessagePayload.builder()
.store(storeBuilder -> storeBuilder)
.product(productBuilder -> productBuilder)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ProductTailoringSlugSetMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ProductTailoringSlugSetMessagePayloadbuilder(ProductTailoringSlugSetMessagePayload template) create builder for ProductTailoringSlugSetMessagePayload instancecopyDeep()factory method to create a deep copy of ProductTailoringSlugSetMessagePayload@Valid LocalizedStringThe slug of the ProductTailoring before the Set Slug update action.@NotNull @Valid ProductReferenceReference to the Product the Product Tailoring belongs to.User-defined unique identifier of the Product this Product Tailoring belongs to.@Valid LocalizedStringgetSlug()The slug of the Product Tailoring after the Set Slug update action.@NotNull @Valid StoreKeyReferencegetStore()The Store to which the Product Tailoring belongs.of()factory methodof(ProductTailoringSlugSetMessagePayload template) factory method to create a shallow copy ProductTailoringSlugSetMessagePayloadvoidsetOldSlug(LocalizedString oldSlug) The slug of the ProductTailoring before the Set Slug update action.voidsetProduct(ProductReference product) Reference to the Product the Product Tailoring belongs to.voidsetProductKey(String productKey) User-defined unique identifier of the Product this Product Tailoring belongs to.voidsetSlug(LocalizedString slug) The slug of the Product Tailoring after the Set Slug update action.voidsetStore(StoreKeyReference store) The Store to which the Product Tailoring belongs.static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringSlugSetMessagePayload>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayloadMethods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
as
-
Field Details
-
PRODUCT_TAILORING_SLUG_SET
discriminator value for ProductTailoringSlugSetMessagePayload- 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
-
getSlug
The slug of the Product Tailoring after the Set Slug update action.
- Returns:
- slug
-
getOldSlug
The slug of the ProductTailoring before the Set Slug update action.
- Returns:
- oldSlug
-
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
-
setSlug
The slug of the Product Tailoring after the Set Slug update action.
- Parameters:
slug- value to be set
-
setOldSlug
The slug of the ProductTailoring before the Set Slug update action.
- Parameters:
oldSlug- value to be set
-
of
factory method- Returns:
- instance of ProductTailoringSlugSetMessagePayload
-
of
factory method to create a shallow copy ProductTailoringSlugSetMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ProductTailoringSlugSetMessagePayload copyDeep()- Specified by:
copyDeepin interfaceMessagePayload
-
deepCopy
@Nullable static ProductTailoringSlugSetMessagePayload deepCopy(@Nullable ProductTailoringSlugSetMessagePayload template) factory method to create a deep copy of ProductTailoringSlugSetMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductTailoringSlugSetMessagePayload- Returns:
- builder
-
builder
static ProductTailoringSlugSetMessagePayloadBuilder builder(ProductTailoringSlugSetMessagePayload template) create builder for ProductTailoringSlugSetMessagePayload instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withProductTailoringSlugSetMessagePayload
default <T> T withProductTailoringSlugSetMessagePayload(Function<ProductTailoringSlugSetMessagePayload, 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<ProductTailoringSlugSetMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-