Interface ProductSetPricesAction

All Superinterfaces:
ProductUpdateAction, ResourceUpdateAction<ProductUpdateAction>

public interface ProductSetPricesAction extends ProductUpdateAction

Either variantId or sku is required.


Example to create an instance using the builder pattern

     ProductSetPricesAction productSetPricesAction = ProductSetPricesAction.builder()
             .plusPrices(pricesBuilder -> pricesBuilder)
             .build()
 
  • Field Details

  • Method Details

    • getVariantId

      Long getVariantId()

      The id of the ProductVariant to update.

      Returns:
      variantId
    • getSku

      String getSku()

      The sku of the ProductVariant to update.

      Returns:
      sku
    • getPrices

      @NotNull @Valid @NotNull @Valid List<PriceDraft> getPrices()

      The Embedded Prices to set. Each Price must have its unique Price scope (with same currency, country, Customer Group, Channel, validFrom and validUntil).

      Returns:
      prices
    • getStaged

      Boolean getStaged()

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

      Returns:
      staged
    • setVariantId

      void setVariantId(Long variantId)

      The id of the ProductVariant to update.

      Parameters:
      variantId - value to be set
    • setSku

      void setSku(String sku)

      The sku of the ProductVariant to update.

      Parameters:
      sku - value to be set
    • setPrices

      void setPrices(PriceDraft... prices)

      The Embedded Prices to set. Each Price must have its unique Price scope (with same currency, country, Customer Group, Channel, validFrom and validUntil).

      Parameters:
      prices - values to be set
    • setPrices

      void setPrices(List<PriceDraft> prices)

      The Embedded Prices to set. Each Price must have its unique Price scope (with same currency, country, Customer Group, Channel, validFrom and validUntil).

      Parameters:
      prices - values to be set
    • setStaged

      void setStaged(Boolean staged)

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

      Parameters:
      staged - value to be set
    • of

      factory method
      Returns:
      instance of ProductSetPricesAction
    • of

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

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

      builder factory method for ProductSetPricesAction
      Returns:
      builder
    • builder

      create builder for ProductSetPricesAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductSetPricesAction

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