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