Package com.commercetools.api.models.me
Class MyPaymentSetMethodInfoCustomFieldActionBuilder
java.lang.Object
com.commercetools.api.models.me.MyPaymentSetMethodInfoCustomFieldActionBuilder
- All Implemented Interfaces:
Builder<MyPaymentSetMethodInfoCustomFieldAction>
public class MyPaymentSetMethodInfoCustomFieldActionBuilder
extends Object
implements Builder<MyPaymentSetMethodInfoCustomFieldAction>
MyPaymentSetMethodInfoCustomFieldActionBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
MyPaymentSetMethodInfoCustomFieldAction myPaymentSetMethodInfoCustomFieldAction = MyPaymentSetMethodInfoCustomFieldAction.builder()
.name("{name}")
.build()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds MyPaymentSetMethodInfoCustomFieldAction with checking for non-null required valuesbuilds MyPaymentSetMethodInfoCustomFieldAction 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 MyPaymentSetMethodInfoCustomFieldActionBuilderof
(MyPaymentSetMethodInfoCustomFieldAction template) create builder for MyPaymentSetMethodInfoCustomFieldAction instanceIfvalue
is absent ornull
, this field will be removed if it exists.
-
Constructor Details
-
MyPaymentSetMethodInfoCustomFieldActionBuilder
public MyPaymentSetMethodInfoCustomFieldActionBuilder()
-
-
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. Ifvalue
is provided, it is set for the field defined byname
. Trying to remove a field that does not exist will fail with an InvalidOperation error.- 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. Ifvalue
is provided, it is set for the field defined byname
. Trying to remove a field that does not exist will fail with an InvalidOperation error.- Returns:
- value
-
build
builds MyPaymentSetMethodInfoCustomFieldAction with checking for non-null required values- Specified by:
build
in interfaceBuilder<MyPaymentSetMethodInfoCustomFieldAction>
- Returns:
- MyPaymentSetMethodInfoCustomFieldAction
-
buildUnchecked
builds MyPaymentSetMethodInfoCustomFieldAction without checking for non-null required values- Returns:
- MyPaymentSetMethodInfoCustomFieldAction
-
of
factory method for an instance of MyPaymentSetMethodInfoCustomFieldActionBuilder- Returns:
- builder
-
of
public static MyPaymentSetMethodInfoCustomFieldActionBuilder of(MyPaymentSetMethodInfoCustomFieldAction template) create builder for MyPaymentSetMethodInfoCustomFieldAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-