Class CustomerGroupSetCustomFieldActionBuilder

java.lang.Object
com.commercetools.api.models.customer_group.CustomerGroupSetCustomFieldActionBuilder
All Implemented Interfaces:
Builder<CustomerGroupSetCustomFieldAction>

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

     CustomerGroupSetCustomFieldAction customerGroupSetCustomFieldAction = CustomerGroupSetCustomFieldAction.builder()
             .name("{name}")
             .build()
 
  • Constructor Details

    • CustomerGroupSetCustomFieldActionBuilder

      public CustomerGroupSetCustomFieldActionBuilder()
  • Method Details

    • name

      Name of the Custom Field.

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

      public CustomerGroupSetCustomFieldActionBuilder value(@Nullable Object 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
    • 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 CustomerGroupSetCustomFieldAction with checking for non-null required values
      Specified by:
      build in interface Builder<CustomerGroupSetCustomFieldAction>
      Returns:
      CustomerGroupSetCustomFieldAction
    • buildUnchecked

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

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

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