Interface ProductSetMetaKeywordsAction

All Superinterfaces:
ProductUpdateAction, ResourceUpdateAction<ProductUpdateAction>

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

     ProductSetMetaKeywordsAction productSetMetaKeywordsAction = ProductSetMetaKeywordsAction.builder()
             .build()
 
  • Field Details

    • SET_META_KEYWORDS

      static final String SET_META_KEYWORDS
      discriminator value for ProductSetMetaKeywordsAction
      See Also:
  • Method Details

    • getMetaKeywords

      @Valid @Valid LocalizedString getMetaKeywords()

      Value to set. If empty, any existing value will be removed.

      Returns:
      metaKeywords
    • getStaged

      Boolean getStaged()

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

      Returns:
      staged
    • setMetaKeywords

      void setMetaKeywords(LocalizedString metaKeywords)

      Value to set. If empty, any existing value will be removed.

      Parameters:
      metaKeywords - value to be set
    • setStaged

      void setStaged(Boolean staged)

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

      Parameters:
      staged - value to be set
    • of

      factory method
      Returns:
      instance of ProductSetMetaKeywordsAction
    • of

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

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

      builder factory method for ProductSetMetaKeywordsAction
      Returns:
      builder
    • builder

      create builder for ProductSetMetaKeywordsAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductSetMetaKeywordsAction

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