Interface CartSetLineItemShippingDetailsAction
- All Superinterfaces:
CartUpdateAction,ResourceUpdateAction<CartUpdateAction>
CartSetLineItemShippingDetailsAction
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
CartSetLineItemShippingDetailsAction cartSetLineItemShippingDetailsAction = CartSetLineItemShippingDetailsAction.builder()
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for CartSetLineItemShippingDetailsAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for CartSetLineItemShippingDetailsActionbuilder(CartSetLineItemShippingDetailsAction template) create builder for CartSetLineItemShippingDetailsAction instancecopyDeep()deepCopy(CartSetLineItemShippingDetailsAction template) factory method to create a deep copy of CartSetLineItemShippingDetailsActionidof the LineItem to update.keyof the LineItem to update.@Valid ItemShippingDetailsDraftValue to set.of()factory methodof(CartSetLineItemShippingDetailsAction template) factory method to create a shallow copy CartSetLineItemShippingDetailsActionvoidsetLineItemId(String lineItemId) idof the LineItem to update.voidsetLineItemKey(String lineItemKey) keyof the LineItem to update.voidsetShippingDetails(ItemShippingDetailsDraft shippingDetails) Value to set.static com.fasterxml.jackson.core.type.TypeReference<CartSetLineItemShippingDetailsAction>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.cart.CartUpdateAction
getAction, withCartUpdateActionMethods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
SET_LINE_ITEM_SHIPPING_DETAILS
discriminator value for CartSetLineItemShippingDetailsAction- See Also:
-
-
Method Details
-
getLineItemId
String getLineItemId()idof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Returns:
- lineItemId
-
getLineItemKey
String getLineItemKey()keyof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Returns:
- lineItemKey
-
getShippingDetails
Value to set. If empty, the existing value is removed.
- Returns:
- shippingDetails
-
setLineItemId
idof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Parameters:
lineItemId- value to be set
-
setLineItemKey
keyof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Parameters:
lineItemKey- value to be set
-
setShippingDetails
Value to set. If empty, the existing value is removed.
- Parameters:
shippingDetails- value to be set
-
of
factory method- Returns:
- instance of CartSetLineItemShippingDetailsAction
-
of
factory method to create a shallow copy CartSetLineItemShippingDetailsAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
CartSetLineItemShippingDetailsAction copyDeep()- Specified by:
copyDeepin interfaceCartUpdateAction
-
deepCopy
@Nullable static CartSetLineItemShippingDetailsAction deepCopy(@Nullable CartSetLineItemShippingDetailsAction template) factory method to create a deep copy of CartSetLineItemShippingDetailsAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for CartSetLineItemShippingDetailsAction- Returns:
- builder
-
builder
static CartSetLineItemShippingDetailsActionBuilder builder(CartSetLineItemShippingDetailsAction template) create builder for CartSetLineItemShippingDetailsAction instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withCartSetLineItemShippingDetailsAction
default <T> T withCartSetLineItemShippingDetailsAction(Function<CartSetLineItemShippingDetailsAction, 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<CartSetLineItemShippingDetailsAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-