Interface ProductSetSearchKeywordsAction

All Superinterfaces:
ProductUpdateAction, ResourceUpdateAction<ProductUpdateAction>

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

     ProductSetSearchKeywordsAction productSetSearchKeywordsAction = ProductSetSearchKeywordsAction.builder()
             .searchKeywords(searchKeywordsBuilder -> searchKeywordsBuilder)
             .build()
 
  • Field Details

    • SET_SEARCH_KEYWORDS

      static final String SET_SEARCH_KEYWORDS
      discriminator value for ProductSetSearchKeywordsAction
      See Also:
  • Method Details

    • getSearchKeywords

      @NotNull @Valid @NotNull @Valid SearchKeywords getSearchKeywords()

      Value to set.

      Returns:
      searchKeywords
    • getStaged

      Boolean getStaged()

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

      Returns:
      staged
    • setSearchKeywords

      void setSearchKeywords(SearchKeywords searchKeywords)

      Value to set.

      Parameters:
      searchKeywords - value to be set
    • setStaged

      void setStaged(Boolean staged)

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

      Parameters:
      staged - value to be set
    • of

      factory method
      Returns:
      instance of ProductSetSearchKeywordsAction
    • of

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

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

      builder factory method for ProductSetSearchKeywordsAction
      Returns:
      builder
    • builder

      create builder for ProductSetSearchKeywordsAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductSetSearchKeywordsAction

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