Interface ProductSearchProjectionParams


public interface ProductSearchProjectionParams
ProductSearchProjectionParams
Example to create an instance using the builder pattern

     ProductSearchProjectionParams productSearchProjectionParams = ProductSearchProjectionParams.builder()
             .build()
 
  • Method Details

    • getExpand

      List<String> getExpand()

      Expands a value of type Reference in a ProductProjection. In case the referenced object does not exist, the API returns the non-expanded reference.

      Returns:
      expand
    • getStaged

      Boolean getStaged()

      Set to true to retrieve the staged Product Projection

      Returns:
      staged
    • getPriceCurrency

      String getPriceCurrency()

      The currency used for Price selection.

      Returns:
      priceCurrency
    • getPriceCountry

      String getPriceCountry()

      The country used for Price selection. Can only be used in conjunction with the priceCurrency parameter.

      Returns:
      priceCountry
    • getPriceCustomerGroup

      String getPriceCustomerGroup()

      id of an existing CustomerGroup used for Price selection. Can only be used in conjunction with the priceCurrency parameter.

      Returns:
      priceCustomerGroup
    • getPriceChannel

      String getPriceChannel()

      id of an existing Channel used for Price selection. Can only be used in conjunction with the priceCurrency parameter.

      Returns:
      priceChannel
    • getLocaleProjection

      List<String> getLocaleProjection()

      Used for locale-based projection.

      Returns:
      localeProjection
    • getStoreProjection

      String getStoreProjection()

      key of an existing Store. If the Store has defined some languages, countries, distribution or supply Channels, they are used for projections based on locale, price, and inventory. If the Store has defined Product Selections, they have no effect on the results of this query.

      Returns:
      storeProjection
    • setExpand

      void setExpand(String... expand)

      Expands a value of type Reference in a ProductProjection. In case the referenced object does not exist, the API returns the non-expanded reference.

      Parameters:
      expand - values to be set
    • setExpand

      void setExpand(List<String> expand)

      Expands a value of type Reference in a ProductProjection. In case the referenced object does not exist, the API returns the non-expanded reference.

      Parameters:
      expand - values to be set
    • setStaged

      void setStaged(Boolean staged)

      Set to true to retrieve the staged Product Projection

      Parameters:
      staged - value to be set
    • setPriceCurrency

      void setPriceCurrency(String priceCurrency)

      The currency used for Price selection.

      Parameters:
      priceCurrency - value to be set
    • setPriceCountry

      void setPriceCountry(String priceCountry)

      The country used for Price selection. Can only be used in conjunction with the priceCurrency parameter.

      Parameters:
      priceCountry - value to be set
    • setPriceCustomerGroup

      void setPriceCustomerGroup(String priceCustomerGroup)

      id of an existing CustomerGroup used for Price selection. Can only be used in conjunction with the priceCurrency parameter.

      Parameters:
      priceCustomerGroup - value to be set
    • setPriceChannel

      void setPriceChannel(String priceChannel)

      id of an existing Channel used for Price selection. Can only be used in conjunction with the priceCurrency parameter.

      Parameters:
      priceChannel - value to be set
    • setLocaleProjection

      void setLocaleProjection(String... localeProjection)

      Used for locale-based projection.

      Parameters:
      localeProjection - values to be set
    • setLocaleProjection

      void setLocaleProjection(List<String> localeProjection)

      Used for locale-based projection.

      Parameters:
      localeProjection - values to be set
    • setStoreProjection

      void setStoreProjection(String storeProjection)

      key of an existing Store. If the Store has defined some languages, countries, distribution or supply Channels, they are used for projections based on locale, price, and inventory. If the Store has defined Product Selections, they have no effect on the results of this query.

      Parameters:
      storeProjection - value to be set
    • of

      factory method
      Returns:
      instance of ProductSearchProjectionParams
    • of

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

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

      builder factory method for ProductSearchProjectionParams
      Returns:
      builder
    • builder

      create builder for ProductSearchProjectionParams instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductSearchProjectionParams

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