Interface BestDeal
- All Superinterfaces:
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 Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic BestDealBuilder
builder()
builder factory method for BestDealstatic BestDealBuilder
create builder for BestDeal instancestatic BestDeal
factory method to create a deep copy of BestDeal@NotNull String
Discount type that offers the best deal; the value can beproduct-discount
orcart-discount
.static BestDeal
of()
factory methodstatic BestDeal
factory method to create a shallow copy BestDealvoid
setChosenDiscountType
(String chosenDiscountType) Discount type that offers the best deal; the value can beproduct-discount
orcart-discount
.static com.fasterxml.jackson.core.type.TypeReference<BestDeal>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withBestDeal
(Function<BestDeal, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.cart.DiscountTypeCombination
getType, withDiscountTypeCombination
-
Field Details
-
BEST_DEAL
discriminator value for BestDeal- See Also:
-
-
Method Details
-
getChosenDiscountType
Discount type that offers the best deal; the value can be
product-discount
orcart-discount
.- Returns:
- chosenDiscountType
-
setChosenDiscountType
Discount type that offers the best deal; the value can be
product-discount
orcart-discount
.- Parameters:
chosenDiscountType
- value to be set
-
of
factory method- Returns:
- instance of BestDeal
-
of
factory method to create a shallow copy BestDeal- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of BestDeal- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for BestDeal- Returns:
- builder
-
builder
create builder for BestDeal instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withBestDeal
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-