Interface ProductImageAddedMessagePayload
- All Superinterfaces:
MessagePayload,MessagePayloadMixin
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
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ProductImageAddedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ProductImageAddedMessagePayloadbuilder(ProductImageAddedMessagePayload template) create builder for ProductImageAddedMessagePayload instancecopyDeep()deepCopy(ProductImageAddedMessagePayload template) factory method to create a deep copy of ProductImageAddedMessagePayload@NotNull @Valid ImagegetImage()Image that was added.@NotNull BooleanWhether the update was only applied to the staged Product Projection.@NotNull LongUnique identifier of the Product Variant to which the Image was added.of()factory methodof(ProductImageAddedMessagePayload template) factory method to create a shallow copy ProductImageAddedMessagePayloadvoidImage that was added.voidWhether the update was only applied to the staged Product Projection.voidsetVariantId(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> 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_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
-
copyDeep
ProductImageAddedMessagePayload copyDeep()- Specified by:
copyDeepin interfaceMessagePayload
-
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
-