Interface DiscountCodeInfo
public interface DiscountCodeInfo
DiscountCodeInfo
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
DiscountCodeInfo discountCodeInfo = DiscountCodeInfo.builder()
.discountCode(discountCodeBuilder -> discountCodeBuilder)
.state(DiscountCodeState.NOT_ACTIVE)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic DiscountCodeInfoBuilderbuilder()builder factory method for DiscountCodeInfostatic DiscountCodeInfoBuilderbuilder(DiscountCodeInfo template) create builder for DiscountCodeInfo instancecopyDeep()static DiscountCodeInfodeepCopy(DiscountCodeInfo template) factory method to create a deep copy of DiscountCodeInfo@NotNull @Valid DiscountCodeReferenceDiscount Code associated with the Cart or Order.@NotNull DiscountCodeStategetState()Indicates the state of the Discount Code applied to the Cart or Order.static DiscountCodeInfoof()factory methodstatic DiscountCodeInfoof(DiscountCodeInfo template) factory method to create a shallow copy DiscountCodeInfovoidsetDiscountCode(DiscountCodeReference discountCode) Discount Code associated with the Cart or Order.voidsetState(DiscountCodeState state) Indicates the state of the Discount Code applied to the Cart or Order.static com.fasterxml.jackson.core.type.TypeReference<DiscountCodeInfo>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithDiscountCodeInfo(Function<DiscountCodeInfo, T> helper) accessor map function
-
Method Details
-
getDiscountCode
Discount Code associated with the Cart or Order.
- Returns:
- discountCode
-
getState
Indicates the state of the Discount Code applied to the Cart or Order.
- Returns:
- state
-
setDiscountCode
Discount Code associated with the Cart or Order.
- Parameters:
discountCode- value to be set
-
setState
Indicates the state of the Discount Code applied to the Cart or Order.
- Parameters:
state- value to be set
-
of
factory method- Returns:
- instance of DiscountCodeInfo
-
of
factory method to create a shallow copy DiscountCodeInfo- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
DiscountCodeInfo copyDeep() -
deepCopy
factory method to create a deep copy of DiscountCodeInfo- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for DiscountCodeInfo- Returns:
- builder
-
builder
create builder for DiscountCodeInfo instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withDiscountCodeInfo
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
-