Class ProductSelectionSetCustomFieldActionBuilder
java.lang.Object
com.commercetools.api.models.product_selection.ProductSelectionSetCustomFieldActionBuilder
- All Implemented Interfaces:
Builder<ProductSelectionSetCustomFieldAction>
public class ProductSelectionSetCustomFieldActionBuilder
extends Object
implements Builder<ProductSelectionSetCustomFieldAction>
ProductSelectionSetCustomFieldActionBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ProductSelectionSetCustomFieldAction productSelectionSetCustomFieldAction = ProductSelectionSetCustomFieldAction.builder()
.name("{name}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds ProductSelectionSetCustomFieldAction with checking for non-null required valuesbuilds ProductSelectionSetCustomFieldAction without checking for non-null required valuesgetName()
Name of the Custom Field.getValue()
Ifvalue
is absent ornull
, this field will be removed if it exists.Name of the Custom Field.of()
factory method for an instance of ProductSelectionSetCustomFieldActionBuilderof
(ProductSelectionSetCustomFieldAction template) create builder for ProductSelectionSetCustomFieldAction instanceIfvalue
is absent ornull
, this field will be removed if it exists.
-
Constructor Details
-
ProductSelectionSetCustomFieldActionBuilder
public ProductSelectionSetCustomFieldActionBuilder()
-
-
Method Details
-
name
Name of the Custom Field.
- Parameters:
name
- value to be set- Returns:
- Builder
-
value
If
value
is absent ornull
, this field will be removed if it exists. Removing a field that does not exist returns an InvalidOperation error. Ifvalue
is provided, it is set for the field defined byname
.- Parameters:
value
- value to be set- Returns:
- Builder
-
getName
Name of the Custom Field.
- Returns:
- name
-
getValue
If
value
is absent ornull
, this field will be removed if it exists. Removing a field that does not exist returns an InvalidOperation error. Ifvalue
is provided, it is set for the field defined byname
.- Returns:
- value
-
build
builds ProductSelectionSetCustomFieldAction with checking for non-null required values- Specified by:
build
in interfaceBuilder<ProductSelectionSetCustomFieldAction>
- Returns:
- ProductSelectionSetCustomFieldAction
-
buildUnchecked
builds ProductSelectionSetCustomFieldAction without checking for non-null required values- Returns:
- ProductSelectionSetCustomFieldAction
-
of
factory method for an instance of ProductSelectionSetCustomFieldActionBuilder- Returns:
- builder
-
of
public static ProductSelectionSetCustomFieldActionBuilder of(ProductSelectionSetCustomFieldAction template) create builder for ProductSelectionSetCustomFieldAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-