Interface ProductImageAddedMessagePayload
- All Superinterfaces:
MessagePayload
,MessagePayloadMixin
- All Known Implementing Classes:
ProductImageAddedMessagePayloadImpl
Generated after a successful Add External Image update action or after the successful upload of an image.
Example to create an instance using the builder pattern
ProductImageAddedMessagePayload productImageAddedMessagePayload = ProductImageAddedMessagePayload.builder()
.variantId(0.3)
.image(imageBuilder -> imageBuilder)
.staged(true)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ProductImageAddedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductImageAddedMessagePayloadbuilder
(ProductImageAddedMessagePayload template) create builder for ProductImageAddedMessagePayload instancedeepCopy
(ProductImageAddedMessagePayload template) factory method to create a deep copy of ProductImageAddedMessagePayload@NotNull @Valid Image
getImage()
Image that was added.@NotNull Boolean
Whether the update was only applied to the staged Product Projection.@NotNull Long
Unique identifier of the Product Variant to which the Image was added.of()
factory methodof
(ProductImageAddedMessagePayload template) factory method to create a shallow copy ProductImageAddedMessagePayloadvoid
Image that was added.void
Whether the update was only applied to the staged Product Projection.void
setVariantId
(Long variantId) Unique identifier of the Product Variant to which the Image was added.static com.fasterxml.jackson.core.type.TypeReference<ProductImageAddedMessagePayload>
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_IMAGE_ADDED
discriminator value for ProductImageAddedMessagePayload- See Also:
-
-
Method Details
-
getVariantId
Unique identifier of the Product Variant to which the Image was added.
- Returns:
- variantId
-
getImage
Image that was added.
- Returns:
- image
-
getStaged
Whether the update was only applied to the staged Product Projection.
- Returns:
- staged
-
setVariantId
Unique identifier of the Product Variant to which the Image was added.
- Parameters:
variantId
- value to be set
-
setImage
Image that was added.
- Parameters:
image
- value to be set
-
setStaged
Whether the update was only applied to the staged Product Projection.
- Parameters:
staged
- value to be set
-
of
factory method- Returns:
- instance of ProductImageAddedMessagePayload
-
of
factory method to create a shallow copy ProductImageAddedMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ProductImageAddedMessagePayload deepCopy(@Nullable ProductImageAddedMessagePayload template) factory method to create a deep copy of ProductImageAddedMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductImageAddedMessagePayload- Returns:
- builder
-
builder
create builder for ProductImageAddedMessagePayload instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductImageAddedMessagePayload
default <T> T withProductImageAddedMessagePayload(Function<ProductImageAddedMessagePayload, 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<ProductImageAddedMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-