Interface ShoppingListChangeTextLineItemQuantityAction
- All Superinterfaces:
ResourceUpdateAction<ShoppingListUpdateAction>
,ShoppingListUpdateAction
ShoppingListChangeTextLineItemQuantityAction
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ShoppingListChangeTextLineItemQuantityAction shoppingListChangeTextLineItemQuantityAction = ShoppingListChangeTextLineItemQuantityAction.builder()
.quantity(0.3)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ShoppingListChangeTextLineItemQuantityAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ShoppingListChangeTextLineItemQuantityActioncreate builder for ShoppingListChangeTextLineItemQuantityAction instancefactory method to create a deep copy of ShoppingListChangeTextLineItemQuantityAction@NotNull Long
New value to set.Theid
of the TextLineItem to update.Thekey
of the TextLineItem to update.of()
factory methodfactory method to create a shallow copy ShoppingListChangeTextLineItemQuantityActionvoid
setQuantity
(Long quantity) New value to set.void
setTextLineItemId
(String textLineItemId) Theid
of the TextLineItem to update.void
setTextLineItemKey
(String textLineItemKey) Thekey
of the TextLineItem to update.static com.fasterxml.jackson.core.type.TypeReference<ShoppingListChangeTextLineItemQuantityAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withShoppingListChangeTextLineItemQuantityAction
(Function<ShoppingListChangeTextLineItemQuantityAction, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
Methods inherited from interface com.commercetools.api.models.shopping_list.ShoppingListUpdateAction
getAction, withShoppingListUpdateAction
-
Field Details
-
CHANGE_TEXT_LINE_ITEM_QUANTITY
discriminator value for ShoppingListChangeTextLineItemQuantityAction- See Also:
-
-
Method Details
-
getTextLineItemId
String getTextLineItemId()The
id
of the TextLineItem to update. EitherlineItemId
orlineItemKey
is required.- Returns:
- textLineItemId
-
getTextLineItemKey
String getTextLineItemKey()The
key
of the TextLineItem to update. EitherlineItemId
orlineItemKey
is required.- Returns:
- textLineItemKey
-
getQuantity
New value to set. If
0
, the TextLineItem is removed from the ShoppingList.- Returns:
- quantity
-
setTextLineItemId
The
id
of the TextLineItem to update. EitherlineItemId
orlineItemKey
is required.- Parameters:
textLineItemId
- value to be set
-
setTextLineItemKey
The
key
of the TextLineItem to update. EitherlineItemId
orlineItemKey
is required.- Parameters:
textLineItemKey
- value to be set
-
setQuantity
New value to set. If
0
, the TextLineItem is removed from the ShoppingList.- Parameters:
quantity
- value to be set
-
of
factory method- Returns:
- instance of ShoppingListChangeTextLineItemQuantityAction
-
of
static ShoppingListChangeTextLineItemQuantityAction of(ShoppingListChangeTextLineItemQuantityAction template) factory method to create a shallow copy ShoppingListChangeTextLineItemQuantityAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ShoppingListChangeTextLineItemQuantityAction deepCopy(@Nullable ShoppingListChangeTextLineItemQuantityAction template) factory method to create a deep copy of ShoppingListChangeTextLineItemQuantityAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ShoppingListChangeTextLineItemQuantityAction- Returns:
- builder
-
builder
static ShoppingListChangeTextLineItemQuantityActionBuilder builder(ShoppingListChangeTextLineItemQuantityAction template) create builder for ShoppingListChangeTextLineItemQuantityAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withShoppingListChangeTextLineItemQuantityAction
default <T> T withShoppingListChangeTextLineItemQuantityAction(Function<ShoppingListChangeTextLineItemQuantityAction, 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<ShoppingListChangeTextLineItemQuantityAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-