Package com.commercetools.api.models.me
Class MyCartSetCustomFieldActionBuilder
java.lang.Object
com.commercetools.api.models.me.MyCartSetCustomFieldActionBuilder
- All Implemented Interfaces:
Builder<MyCartSetCustomFieldAction>
public class MyCartSetCustomFieldActionBuilder
extends Object
implements Builder<MyCartSetCustomFieldAction>
MyCartSetCustomFieldActionBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
MyCartSetCustomFieldAction myCartSetCustomFieldAction = MyCartSetCustomFieldAction.builder()
.name("{name}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds MyCartSetCustomFieldAction with checking for non-null required valuesbuilds MyCartSetCustomFieldAction 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 MyCartSetCustomFieldActionBuilderof
(MyCartSetCustomFieldAction template) create builder for MyCartSetCustomFieldAction instanceIfvalue
is absent ornull
, this field will be removed if it exists.
-
Constructor Details
-
MyCartSetCustomFieldActionBuilder
public MyCartSetCustomFieldActionBuilder()
-
-
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 MyCartSetCustomFieldAction with checking for non-null required values- Specified by:
build
in interfaceBuilder<MyCartSetCustomFieldAction>
- Returns:
- MyCartSetCustomFieldAction
-
buildUnchecked
builds MyCartSetCustomFieldAction without checking for non-null required values- Returns:
- MyCartSetCustomFieldAction
-
of
factory method for an instance of MyCartSetCustomFieldActionBuilder- Returns:
- builder
-
of
create builder for MyCartSetCustomFieldAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-