Class CartSetLineItemSupplyChannelActionBuilder

java.lang.Object
com.commercetools.api.models.cart.CartSetLineItemSupplyChannelActionBuilder
All Implemented Interfaces:
Builder<CartSetLineItemSupplyChannelAction>

public class CartSetLineItemSupplyChannelActionBuilder extends Object implements Builder<CartSetLineItemSupplyChannelAction>
CartSetLineItemSupplyChannelActionBuilder
Example to create an instance using the builder pattern

     CartSetLineItemSupplyChannelAction cartSetLineItemSupplyChannelAction = CartSetLineItemSupplyChannelAction.builder()
             .build()
 
  • Constructor Details

    • CartSetLineItemSupplyChannelActionBuilder

      public CartSetLineItemSupplyChannelActionBuilder()
  • Method Details

    • lineItemId

      id of the LineItem to update. Either lineItemId or lineItemKey is required.

      Parameters:
      lineItemId - value to be set
      Returns:
      Builder
    • lineItemKey

      key of the LineItem to update. Either lineItemId or lineItemKey is required.

      Parameters:
      lineItemKey - value to be set
      Returns:
      Builder
    • supplyChannel

      • If present, a Reference to the Channel is set for the LineItem specified by lineItemId.
      • If not present, the current Reference to a supply channel will be removed from the LineItem specified by lineItemId. The Channel must have the InventorySupply ChannelRoleEnum.
      Parameters:
      builder - function to build the supplyChannel value
      Returns:
      Builder
    • withSupplyChannel

      • If present, a Reference to the Channel is set for the LineItem specified by lineItemId.
      • If not present, the current Reference to a supply channel will be removed from the LineItem specified by lineItemId. The Channel must have the InventorySupply ChannelRoleEnum.
      Parameters:
      builder - function to build the supplyChannel value
      Returns:
      Builder
    • supplyChannel

      • If present, a Reference to the Channel is set for the LineItem specified by lineItemId.
      • If not present, the current Reference to a supply channel will be removed from the LineItem specified by lineItemId. The Channel must have the InventorySupply ChannelRoleEnum.
      Parameters:
      supplyChannel - value to be set
      Returns:
      Builder
    • getLineItemId

      @Nullable public String getLineItemId()

      id of the LineItem to update. Either lineItemId or lineItemKey is required.

      Returns:
      lineItemId
    • getLineItemKey

      @Nullable public String getLineItemKey()

      key of the LineItem to update. Either lineItemId or lineItemKey is required.

      Returns:
      lineItemKey
    • getSupplyChannel

      @Nullable public ChannelResourceIdentifier getSupplyChannel()
      • If present, a Reference to the Channel is set for the LineItem specified by lineItemId.
      • If not present, the current Reference to a supply channel will be removed from the LineItem specified by lineItemId. The Channel must have the InventorySupply ChannelRoleEnum.
      Returns:
      supplyChannel
    • build

      builds CartSetLineItemSupplyChannelAction with checking for non-null required values
      Specified by:
      build in interface Builder<CartSetLineItemSupplyChannelAction>
      Returns:
      CartSetLineItemSupplyChannelAction
    • buildUnchecked

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

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

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