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
Modifier and TypeFieldDescriptionstatic final String
discriminator value for OrderCustomLineItemDiscountSetMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for OrderCustomLineItemDiscountSetMessagePayloadcreate builder for OrderCustomLineItemDiscountSetMessagePayload instancefactory method to create a deep copy of OrderCustomLineItemDiscountSetMessagePayload@NotNull String
Unique 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 TaxedItemPrice
TaxedItemPrice of the Custom Line Item after the Discount recalculation.of()
factory methodfactory method to create a shallow copy OrderCustomLineItemDiscountSetMessagePayloadvoid
setCustomLineItemId
(String customLineItemId) Unique identifier for the Custom Line Item.void
setCustomLineItemKey
(String customLineItemKey) User-defined unique identifier of the Custom Line Item.void
setDiscountedPricePerQuantity
(DiscountedLineItemPriceForQuantity... discountedPricePerQuantity) Array of DiscountedLineItemPriceForQuantity after the Discount recalculation.void
setDiscountedPricePerQuantity
(List<DiscountedLineItemPriceForQuantity> discountedPricePerQuantity) Array of DiscountedLineItemPriceForQuantity after the Discount recalculation.void
setTaxedPrice
(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> T
withOrderCustomLineItemDiscountSetMessagePayload
(Function<OrderCustomLineItemDiscountSetMessagePayload, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayload
Methods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
as
Methods 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
-
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
-