Interface ProductVariantTailoringAddedMessagePayload
- All Superinterfaces:
MessagePayload
,MessagePayloadMixin
Generated after a successful Add ProductVariant Tailoring update action.
Example to create an instance using the builder pattern
ProductVariantTailoringAddedMessagePayload productVariantTailoringAddedMessagePayload = ProductVariantTailoringAddedMessagePayload.builder()
.store(storeBuilder -> storeBuilder)
.product(productBuilder -> productBuilder)
.variantId(1)
.variant(variantBuilder -> variantBuilder)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ProductVariantTailoringAddedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductVariantTailoringAddedMessagePayloadcreate builder for ProductVariantTailoringAddedMessagePayload instancefactory method to create a deep copy of ProductVariantTailoringAddedMessagePayload@NotNull @Valid ProductReference
Reference to the tailored Product.key
of the tailored Product.@NotNull @Valid StoreKeyReference
getStore()
The Store to which the Product Tailoring belongs.@NotNull @Valid ProductVariantTailoring
The ProductVariantTailoring that was added to the ProductTailoring.@NotNull Long
id
of the ProductVariant added to the Tailoring.of()
factory methodof
(ProductVariantTailoringAddedMessagePayload template) factory method to create a shallow copy ProductVariantTailoringAddedMessagePayloadvoid
setProduct
(ProductReference product) Reference to the tailored Product.void
setProductKey
(String productKey) key
of the tailored Product.void
setStore
(StoreKeyReference store) The Store to which the Product Tailoring belongs.void
setVariant
(ProductVariantTailoring variant) The ProductVariantTailoring that was added to the ProductTailoring.void
setVariantId
(Long variantId) id
of the ProductVariant added to the Tailoring.static com.fasterxml.jackson.core.type.TypeReference<ProductVariantTailoringAddedMessagePayload>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withProductVariantTailoringAddedMessagePayload
(Function<ProductVariantTailoringAddedMessagePayload, T> helper) 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_VARIANT_TAILORING_ADDED
discriminator value for ProductVariantTailoringAddedMessagePayload- See Also:
-
-
Method Details
-
getStore
The Store to which the Product Tailoring belongs.
- Returns:
- store
-
getProductKey
String getProductKey()key
of the tailored Product.- Returns:
- productKey
-
getProduct
Reference to the tailored Product.
- Returns:
- product
-
getVariantId
id
of the ProductVariant added to the Tailoring.- Returns:
- variantId
-
getVariant
The ProductVariantTailoring that was added to the ProductTailoring.
- Returns:
- variant
-
setStore
The Store to which the Product Tailoring belongs.
- Parameters:
store
- value to be set
-
setProductKey
key
of the tailored Product.- Parameters:
productKey
- value to be set
-
setProduct
Reference to the tailored Product.
- Parameters:
product
- value to be set
-
setVariantId
id
of the ProductVariant added to the Tailoring.- Parameters:
variantId
- value to be set
-
setVariant
The ProductVariantTailoring that was added to the ProductTailoring.
- Parameters:
variant
- value to be set
-
of
factory method- Returns:
- instance of ProductVariantTailoringAddedMessagePayload
-
of
static ProductVariantTailoringAddedMessagePayload of(ProductVariantTailoringAddedMessagePayload template) factory method to create a shallow copy ProductVariantTailoringAddedMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ProductVariantTailoringAddedMessagePayload deepCopy(@Nullable ProductVariantTailoringAddedMessagePayload template) factory method to create a deep copy of ProductVariantTailoringAddedMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductVariantTailoringAddedMessagePayload- Returns:
- builder
-
builder
static ProductVariantTailoringAddedMessagePayloadBuilder builder(ProductVariantTailoringAddedMessagePayload template) create builder for ProductVariantTailoringAddedMessagePayload instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductVariantTailoringAddedMessagePayload
default <T> T withProductVariantTailoringAddedMessagePayload(Function<ProductVariantTailoringAddedMessagePayload, 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<ProductVariantTailoringAddedMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-