Interface ProductTailoringImageAddedMessagePayload
- All Superinterfaces:
MessagePayload,MessagePayloadMixin
Generated after a successful Add External Image update action or after a successful Upload Product Tailoring image request.
Example to create an instance using the builder pattern
ProductTailoringImageAddedMessagePayload productTailoringImageAddedMessagePayload = ProductTailoringImageAddedMessagePayload.builder()
.store(storeBuilder -> storeBuilder)
.product(productBuilder -> productBuilder)
.variantId(0.3)
.image(imageBuilder -> imageBuilder)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ProductTailoringImageAddedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ProductTailoringImageAddedMessagePayloadcreate builder for ProductTailoringImageAddedMessagePayload instancecopyDeep()factory method to create a deep copy of ProductTailoringImageAddedMessagePayload@NotNull @Valid ImagegetImage()Image that was added.@NotNull @Valid ProductReferenceReference to the tailored Product.keyof the tailored Product.@NotNull @Valid StoreKeyReferencegetStore()The Store to which the Product Tailoring belongs.@NotNull Longidof the tailored ProductVariant.of()factory methodof(ProductTailoringImageAddedMessagePayload template) factory method to create a shallow copy ProductTailoringImageAddedMessagePayloadvoidImage that was added.voidsetProduct(ProductReference product) Reference to the tailored Product.voidsetProductKey(String productKey) keyof the tailored Product.voidsetStore(StoreKeyReference store) The Store to which the Product Tailoring belongs.voidsetVariantId(Long variantId) idof the tailored ProductVariant.static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringImageAddedMessagePayload>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithProductTailoringImageAddedMessagePayload(Function<ProductTailoringImageAddedMessagePayload, T> helper) accessor 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_IMAGE_ADDED
discriminator value for ProductTailoringImageAddedMessagePayload- See Also:
-
-
Method Details
-
getStore
The Store to which the Product Tailoring belongs.
- Returns:
- store
-
getProductKey
String getProductKey()keyof the tailored Product.- Returns:
- productKey
-
getProduct
Reference to the tailored Product.
- Returns:
- product
-
getVariantId
idof the tailored ProductVariant.- Returns:
- variantId
-
getImage
Image that was added.
- Returns:
- image
-
setStore
The Store to which the Product Tailoring belongs.
- Parameters:
store- value to be set
-
setProductKey
keyof the tailored Product.- Parameters:
productKey- value to be set
-
setProduct
Reference to the tailored Product.
- Parameters:
product- value to be set
-
setVariantId
idof the tailored ProductVariant.- Parameters:
variantId- value to be set
-
setImage
Image that was added.
- Parameters:
image- value to be set
-
of
factory method- Returns:
- instance of ProductTailoringImageAddedMessagePayload
-
of
static ProductTailoringImageAddedMessagePayload of(ProductTailoringImageAddedMessagePayload template) factory method to create a shallow copy ProductTailoringImageAddedMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ProductTailoringImageAddedMessagePayload copyDeep()- Specified by:
copyDeepin interfaceMessagePayload
-
deepCopy
@Nullable static ProductTailoringImageAddedMessagePayload deepCopy(@Nullable ProductTailoringImageAddedMessagePayload template) factory method to create a deep copy of ProductTailoringImageAddedMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductTailoringImageAddedMessagePayload- Returns:
- builder
-
builder
static ProductTailoringImageAddedMessagePayloadBuilder builder(ProductTailoringImageAddedMessagePayload template) create builder for ProductTailoringImageAddedMessagePayload instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withProductTailoringImageAddedMessagePayload
default <T> T withProductTailoringImageAddedMessagePayload(Function<ProductTailoringImageAddedMessagePayload, 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<ProductTailoringImageAddedMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-