Class CartChangeCustomLineItemQuantityActionBuilder

java.lang.Object
com.commercetools.api.models.cart.CartChangeCustomLineItemQuantityActionBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<CartChangeCustomLineItemQuantityAction>

public class CartChangeCustomLineItemQuantityActionBuilder extends Object implements io.vrap.rmf.base.client.Builder<CartChangeCustomLineItemQuantityAction>
CartChangeCustomLineItemQuantityActionBuilder
Example to create an instance using the builder pattern

     CartChangeCustomLineItemQuantityAction cartChangeCustomLineItemQuantityAction = CartChangeCustomLineItemQuantityAction.builder()
             .quantity(0.3)
             .build()
 
  • Constructor Details

    • CartChangeCustomLineItemQuantityActionBuilder

      public CartChangeCustomLineItemQuantityActionBuilder()
  • Method Details

    • customLineItemId

      public CartChangeCustomLineItemQuantityActionBuilder customLineItemId(@Nullable String customLineItemId)

      id of the CustomLineItem to update. Either customLineItemId or customLineItemKey is required.

      Parameters:
      customLineItemId - value to be set
      Returns:
      Builder
    • customLineItemKey

      public CartChangeCustomLineItemQuantityActionBuilder customLineItemKey(@Nullable String customLineItemKey)

      key of the CustomLineItem to update. Either customLineItemId or customLineItemKey is required.

      Parameters:
      customLineItemKey - value to be set
      Returns:
      Builder
    • quantity

      New value to set.

      If 0, the Custom Line Item is removed from the Cart.

      Parameters:
      quantity - value to be set
      Returns:
      Builder
    • getCustomLineItemId

      @Nullable public String getCustomLineItemId()

      id of the CustomLineItem to update. Either customLineItemId or customLineItemKey is required.

      Returns:
      customLineItemId
    • getCustomLineItemKey

      @Nullable public String getCustomLineItemKey()

      key of the CustomLineItem to update. Either customLineItemId or customLineItemKey is required.

      Returns:
      customLineItemKey
    • getQuantity

      public Long getQuantity()

      New value to set.

      If 0, the Custom Line Item is removed from the Cart.

      Returns:
      quantity
    • build

      builds CartChangeCustomLineItemQuantityAction with checking for non-null required values
      Specified by:
      build in interface io.vrap.rmf.base.client.Builder<CartChangeCustomLineItemQuantityAction>
      Returns:
      CartChangeCustomLineItemQuantityAction
    • buildUnchecked

      public CartChangeCustomLineItemQuantityAction buildUnchecked()
      builds CartChangeCustomLineItemQuantityAction without checking for non-null required values
      Returns:
      CartChangeCustomLineItemQuantityAction
    • of

      factory method for an instance of CartChangeCustomLineItemQuantityActionBuilder
      Returns:
      builder
    • of

      create builder for CartChangeCustomLineItemQuantityAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder