Interface ProductTailoringImagesSetMessagePayload
- All Superinterfaces:
MessagePayload,MessagePayloadMixin
Generated after a successful Set Images update action.
Example to create an instance using the builder pattern
ProductTailoringImagesSetMessagePayload productTailoringImagesSetMessagePayload = ProductTailoringImagesSetMessagePayload.builder()
.store(storeBuilder -> storeBuilder)
.product(productBuilder -> productBuilder)
.variantId(0.3)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ProductTailoringImagesSetMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ProductTailoringImagesSetMessagePayloadcreate builder for ProductTailoringImagesSetMessagePayload instancecopyDeep()factory method to create a deep copy of ProductTailoringImagesSetMessagePayload@NotNull @Valid ProductReferenceReference to the Product the Product Tailoring belongs to.keyof the tailored Product.@NotNull @Valid StoreKeyReferencegetStore()The Store to which the Product Tailoring belongs.@NotNull Longidof the tailored Product Variant.of()factory methodof(ProductTailoringImagesSetMessagePayload template) factory method to create a shallow copy ProductTailoringImagesSetMessagePayloadvoidvoidvoidsetOldImages(Image... oldImages) voidsetOldImages(List<Image> oldImages) voidsetProduct(ProductReference product) Reference to the Product the Product Tailoring belongs to.voidsetProductKey(String productKey) keyof the tailored Product.voidsetStore(StoreKeyReference store) The Store to which the Product Tailoring belongs.voidsetVariantId(Long variantId) idof the tailored Product Variant.static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringImagesSetMessagePayload>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithProductTailoringImagesSetMessagePayload(Function<ProductTailoringImagesSetMessagePayload, 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_IMAGES_SET
discriminator value for ProductTailoringImagesSetMessagePayload- 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 Product the Product Tailoring belongs to.
- Returns:
- product
-
getVariantId
idof the tailored Product Variant.- Returns:
- variantId
-
getOldImages
Images on the tailored Product Variant before the Set Images update action.
- Returns:
- oldImages
-
getImages
Images on the tailored Product Variant after the Set Images update action.
- Returns:
- images
-
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 Product the Product Tailoring belongs to.
- Parameters:
product- value to be set
-
setVariantId
idof the tailored Product Variant.- Parameters:
variantId- value to be set
-
setOldImages
Images on the tailored Product Variant before the Set Images update action.
- Parameters:
oldImages- values to be set
-
setOldImages
Images on the tailored Product Variant before the Set Images update action.
- Parameters:
oldImages- values to be set
-
setImages
Images on the tailored Product Variant after the Set Images update action.
- Parameters:
images- values to be set
-
setImages
Images on the tailored Product Variant after the Set Images update action.
- Parameters:
images- values to be set
-
of
factory method- Returns:
- instance of ProductTailoringImagesSetMessagePayload
-
of
factory method to create a shallow copy ProductTailoringImagesSetMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ProductTailoringImagesSetMessagePayload copyDeep()- Specified by:
copyDeepin interfaceMessagePayload
-
deepCopy
@Nullable static ProductTailoringImagesSetMessagePayload deepCopy(@Nullable ProductTailoringImagesSetMessagePayload template) factory method to create a deep copy of ProductTailoringImagesSetMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductTailoringImagesSetMessagePayload- Returns:
- builder
-
builder
static ProductTailoringImagesSetMessagePayloadBuilder builder(ProductTailoringImagesSetMessagePayload template) create builder for ProductTailoringImagesSetMessagePayload instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withProductTailoringImagesSetMessagePayload
default <T> T withProductTailoringImagesSetMessagePayload(Function<ProductTailoringImagesSetMessagePayload, 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<ProductTailoringImagesSetMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-