Interface BestDeal

All Superinterfaces:
DiscountTypeCombination

public interface BestDeal extends DiscountTypeCombination

Indicates the best deal logic applies to a Cart or Order and indicates the discount type that offers the best deal.


Example to create an instance using the builder pattern

     BestDeal bestDeal = BestDeal.builder()
             .chosenDiscountType("{chosenDiscountType}")
             .build()
 
  • Field Details

  • Method Details

    • getChosenDiscountType

      @NotNull @NotNull String getChosenDiscountType()

      Discount type that offers the best deal; the value can be product-discount or cart-discount.

      Returns:
      chosenDiscountType
    • setChosenDiscountType

      void setChosenDiscountType(String chosenDiscountType)

      Discount type that offers the best deal; the value can be product-discount or cart-discount.

      Parameters:
      chosenDiscountType - value to be set
    • of

      static BestDeal of()
      factory method
      Returns:
      instance of BestDeal
    • of

      static BestDeal of(BestDeal template)
      factory method to create a shallow copy BestDeal
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      @Nullable static BestDeal deepCopy(@Nullable BestDeal template)
      factory method to create a deep copy of BestDeal
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      static BestDealBuilder builder()
      builder factory method for BestDeal
      Returns:
      builder
    • builder

      static BestDealBuilder builder(BestDeal template)
      create builder for BestDeal instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withBestDeal

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