Interface ProductRemovePriceAction

All Superinterfaces:
ProductUpdateAction, ResourceUpdateAction<ProductUpdateAction>

public interface ProductRemovePriceAction extends ProductUpdateAction
ProductRemovePriceAction
Example to create an instance using the builder pattern

     ProductRemovePriceAction productRemovePriceAction = ProductRemovePriceAction.builder()
             .priceId("{priceId}")
             .build()
 
  • Field Details

  • Method Details

    • getPriceId

      @NotNull @NotNull String getPriceId()

      The id of the Embedded Price to remove.

      Returns:
      priceId
    • getStaged

      Boolean getStaged()

      If true, only the staged Embedded Price is removed. If false, both the current and staged Embedded Price are removed.

      Returns:
      staged
    • setPriceId

      void setPriceId(String priceId)

      The id of the Embedded Price to remove.

      Parameters:
      priceId - value to be set
    • setStaged

      void setStaged(Boolean staged)

      If true, only the staged Embedded Price is removed. If false, both the current and staged Embedded Price are removed.

      Parameters:
      staged - value to be set
    • of

      factory method
      Returns:
      instance of ProductRemovePriceAction
    • of

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

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

      builder factory method for ProductRemovePriceAction
      Returns:
      builder
    • builder

      create builder for ProductRemovePriceAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductRemovePriceAction

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