Class CartSetCustomLineItemCustomFieldActionBuilder

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

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

     CartSetCustomLineItemCustomFieldAction cartSetCustomLineItemCustomFieldAction = CartSetCustomLineItemCustomFieldAction.builder()
             .name("{name}")
             .build()
 
  • Constructor Details

    • CartSetCustomLineItemCustomFieldActionBuilder

      public CartSetCustomLineItemCustomFieldActionBuilder()
  • Method Details

    • customLineItemId

      public CartSetCustomLineItemCustomFieldActionBuilder 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 CartSetCustomLineItemCustomFieldActionBuilder customLineItemKey(@Nullable String customLineItemKey)

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

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

      Name of the Custom Field.

      Parameters:
      name - value to be set
      Returns:
      Builder
    • value

      If value is absent or null, this field will be removed if it exists. Removing a field that does not exist returns an InvalidOperation error. If value is provided, it is set for the field defined by name.

      Parameters:
      value - 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
    • getName

      public String getName()

      Name of the Custom Field.

      Returns:
      name
    • getValue

      @Nullable public Object getValue()

      If value is absent or null, this field will be removed if it exists. Removing a field that does not exist returns an InvalidOperation error. If value is provided, it is set for the field defined by name.

      Returns:
      value
    • build

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

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

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

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