Interface ProductImageAddedMessagePayload

All Superinterfaces:
MessagePayload, MessagePayloadMixin

public interface ProductImageAddedMessagePayload extends MessagePayload

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 Details

    • PRODUCT_IMAGE_ADDED

      static final String PRODUCT_IMAGE_ADDED
      discriminator value for ProductImageAddedMessagePayload
      See Also:
  • Method Details

    • getVariantId

      @NotNull @NotNull Long getVariantId()

      Unique identifier of the Product Variant to which the Image was added.

      Returns:
      variantId
    • getImage

      @NotNull @Valid @NotNull @Valid Image getImage()

      Image that was added.

      Returns:
      image
    • getStaged

      @NotNull @NotNull Boolean getStaged()

      Whether the update was only applied to the staged Product Projection.

      Returns:
      staged
    • setVariantId

      void setVariantId(Long variantId)

      Unique identifier of the Product Variant to which the Image was added.

      Parameters:
      variantId - value to be set
    • setImage

      void setImage(Image image)

      Image that was added.

      Parameters:
      image - value to be set
    • setStaged

      void setStaged(Boolean staged)

      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

      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