Class ReviewSetCustomFieldActionBuilder

java.lang.Object
com.commercetools.api.models.review.ReviewSetCustomFieldActionBuilder
All Implemented Interfaces:
Builder<ReviewSetCustomFieldAction>

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

     ReviewSetCustomFieldAction reviewSetCustomFieldAction = ReviewSetCustomFieldAction.builder()
             .name("{name}")
             .build()
 
  • Constructor Details

    • ReviewSetCustomFieldActionBuilder

      public ReviewSetCustomFieldActionBuilder()
  • Method Details

    • 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
    • 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 ReviewSetCustomFieldAction with checking for non-null required values
      Specified by:
      build in interface Builder<ReviewSetCustomFieldAction>
      Returns:
      ReviewSetCustomFieldAction
    • buildUnchecked

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

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

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