Interface OrderCustomLineItemDiscountSetMessagePayload
- All Superinterfaces:
MessagePayload,MessagePayloadMixin,OrderMessagePayload
Generated after a successful recalculation of a Discount on a Custom Line Item.
Example to create an instance using the builder pattern
OrderCustomLineItemDiscountSetMessagePayload orderCustomLineItemDiscountSetMessagePayload = OrderCustomLineItemDiscountSetMessagePayload.builder()
.customLineItemId("{customLineItemId}")
.plusDiscountedPricePerQuantity(discountedPricePerQuantityBuilder -> discountedPricePerQuantityBuilder)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for OrderCustomLineItemDiscountSetMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for OrderCustomLineItemDiscountSetMessagePayloadcreate builder for OrderCustomLineItemDiscountSetMessagePayload instancecopyDeep()factory method to create a deep copy of OrderCustomLineItemDiscountSetMessagePayload@NotNull StringUnique identifier for the Custom Line Item.User-defined unique identifier of the Custom Line Item.@NotNull @Valid List<DiscountedLineItemPriceForQuantity>Array of DiscountedLineItemPriceForQuantity after the Discount recalculation.@Valid TaxedItemPriceTaxedItemPrice of the Custom Line Item after the Discount recalculation.of()factory methodfactory method to create a shallow copy OrderCustomLineItemDiscountSetMessagePayloadvoidsetCustomLineItemId(String customLineItemId) Unique identifier for the Custom Line Item.voidsetCustomLineItemKey(String customLineItemKey) User-defined unique identifier of the Custom Line Item.voidsetDiscountedPricePerQuantity(DiscountedLineItemPriceForQuantity... discountedPricePerQuantity) Array of DiscountedLineItemPriceForQuantity after the Discount recalculation.voidsetDiscountedPricePerQuantity(List<DiscountedLineItemPriceForQuantity> discountedPricePerQuantity) Array of DiscountedLineItemPriceForQuantity after the Discount recalculation.voidsetTaxedPrice(TaxedItemPrice taxedPrice) TaxedItemPrice of the Custom Line Item after the Discount recalculation.static com.fasterxml.jackson.core.type.TypeReference<OrderCustomLineItemDiscountSetMessagePayload>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithOrderCustomLineItemDiscountSetMessagePayload(Function<OrderCustomLineItemDiscountSetMessagePayload, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayloadMethods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
asMethods inherited from interface com.commercetools.api.models.message.OrderMessagePayload
withOrderMessagePayload
-
Field Details
-
ORDER_CUSTOM_LINE_ITEM_DISCOUNT_SET
discriminator value for OrderCustomLineItemDiscountSetMessagePayload- See Also:
-
-
Method Details
-
getCustomLineItemId
Unique identifier for the Custom Line Item.
- Returns:
- customLineItemId
-
getCustomLineItemKey
String getCustomLineItemKey()User-defined unique identifier of the Custom Line Item.
- Returns:
- customLineItemKey
-
getDiscountedPricePerQuantity
@NotNull @Valid @NotNull @Valid List<DiscountedLineItemPriceForQuantity> getDiscountedPricePerQuantity()Array of DiscountedLineItemPriceForQuantity after the Discount recalculation.
- Returns:
- discountedPricePerQuantity
-
getTaxedPrice
TaxedItemPrice of the Custom Line Item after the Discount recalculation.
- Returns:
- taxedPrice
-
setCustomLineItemId
Unique identifier for the Custom Line Item.
- Parameters:
customLineItemId- value to be set
-
setCustomLineItemKey
User-defined unique identifier of the Custom Line Item.
- Parameters:
customLineItemKey- value to be set
-
setDiscountedPricePerQuantity
void setDiscountedPricePerQuantity(DiscountedLineItemPriceForQuantity... discountedPricePerQuantity) Array of DiscountedLineItemPriceForQuantity after the Discount recalculation.
- Parameters:
discountedPricePerQuantity- values to be set
-
setDiscountedPricePerQuantity
void setDiscountedPricePerQuantity(List<DiscountedLineItemPriceForQuantity> discountedPricePerQuantity) Array of DiscountedLineItemPriceForQuantity after the Discount recalculation.
- Parameters:
discountedPricePerQuantity- values to be set
-
setTaxedPrice
TaxedItemPrice of the Custom Line Item after the Discount recalculation.
- Parameters:
taxedPrice- value to be set
-
of
factory method- Returns:
- instance of OrderCustomLineItemDiscountSetMessagePayload
-
of
static OrderCustomLineItemDiscountSetMessagePayload of(OrderCustomLineItemDiscountSetMessagePayload template) factory method to create a shallow copy OrderCustomLineItemDiscountSetMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
OrderCustomLineItemDiscountSetMessagePayload copyDeep()- Specified by:
copyDeepin interfaceMessagePayload- Specified by:
copyDeepin interfaceOrderMessagePayload
-
deepCopy
@Nullable static OrderCustomLineItemDiscountSetMessagePayload deepCopy(@Nullable OrderCustomLineItemDiscountSetMessagePayload template) factory method to create a deep copy of OrderCustomLineItemDiscountSetMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for OrderCustomLineItemDiscountSetMessagePayload- Returns:
- builder
-
builder
static OrderCustomLineItemDiscountSetMessagePayloadBuilder builder(OrderCustomLineItemDiscountSetMessagePayload template) create builder for OrderCustomLineItemDiscountSetMessagePayload instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withOrderCustomLineItemDiscountSetMessagePayload
default <T> T withOrderCustomLineItemDiscountSetMessagePayload(Function<OrderCustomLineItemDiscountSetMessagePayload, 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<OrderCustomLineItemDiscountSetMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-