Interface ProductTailoringAddExternalImageAction

All Superinterfaces:
ProductTailoringUpdateAction

public interface ProductTailoringAddExternalImageAction extends ProductTailoringUpdateAction

Either variantId or sku is required to reference a ProductVariant that exists. Produces the ProductTailoringImageAdded Message.


Example to create an instance using the builder pattern

     ProductTailoringAddExternalImageAction productTailoringAddExternalImageAction = ProductTailoringAddExternalImageAction.builder()
             .image(imageBuilder -> imageBuilder)
             .build()
 
  • Field Details

    • ADD_EXTERNAL_IMAGE

      static final String ADD_EXTERNAL_IMAGE
      discriminator value for ProductTailoringAddExternalImageAction
      See Also:
  • Method Details

    • getVariantId

      Long getVariantId()

      The id of the tailored ProductVariant to update.

      Returns:
      variantId
    • getSku

      String getSku()

      The sku of the tailored ProductVariant to update.

      Returns:
      sku
    • getImage

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

      Value to add to images.

      Returns:
      image
    • getStaged

      Boolean getStaged()

      If true, only the staged images is updated. If false, both the current and staged images is updated.

      Returns:
      staged
    • setVariantId

      void setVariantId(Long variantId)

      The id of the tailored ProductVariant to update.

      Parameters:
      variantId - value to be set
    • setSku

      void setSku(String sku)

      The sku of the tailored ProductVariant to update.

      Parameters:
      sku - value to be set
    • setImage

      void setImage(Image image)

      Value to add to images.

      Parameters:
      image - value to be set
    • setStaged

      void setStaged(Boolean staged)

      If true, only the staged images is updated. If false, both the current and staged images is updated.

      Parameters:
      staged - value to be set
    • of

      factory method
      Returns:
      instance of ProductTailoringAddExternalImageAction
    • of

      factory method to create a shallow copy ProductTailoringAddExternalImageAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of ProductTailoringAddExternalImageAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for ProductTailoringAddExternalImageAction
      Returns:
      builder
    • builder

      create builder for ProductTailoringAddExternalImageAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductTailoringAddExternalImageAction

      default <T> T withProductTailoringAddExternalImageAction(Function<ProductTailoringAddExternalImageAction,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<ProductTailoringAddExternalImageAction> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference